gpt4 book ai didi

java - 从 jar 为类文件生成 jaxb Xsd 模式

转载 作者:搜寻专家 更新时间:2023-11-01 03:23:47 26 4
gpt4 key购买 nike

我想从 jar 中的类文件生成 jaxb xsd 模式。目前,我正在使用 jaxb2-maven-plugin 来使用 java 文件生成模式。

<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>jaxb2-maven-plugin</artifactId>
<version>${maven.plugin.jaxb2}</version>
<executions>
<execution>
<id>schemagen</id>
<goals>
<goal>schemagen</goal>
</goals>
<phase>process-classes</phase>
<configuration>
<quiet>true</quiet>
<includes>
<include>com/someProject/domain/*.java</include>
</includes>
<outputDirectory>${project.build.directory}/schemas</outputDirectory>
<clearOutputDir>true</clearOutputDir>
</configuration>
</execution>
</executions>
</plugin>

但是,我有一个用例,我正在获取一个依赖 jar 文件,并希望从该 jar 文件中生成一些类。任何人都可以建议如何做到这一点。

最佳答案

为了简单起见,我重用了代码 presented in this article演示从存储在 Jar 存档中的 Java 类生成 Jaxb 模式的必要步骤

代码由两个类组成 - Employee 和 Address:

package base.package;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlRootElement;

@XmlAccessorType(XmlAccessType.FIELD)
@XmlRootElement(name = "employee")
public class Employee
{
@XmlAttribute
private int id;
private String name;
private double salary;
private String designation;
private Address address;

public int getId() { return id; }
public void setId(int id) { this.id = id; }
public String getName() { return name; }
public void setName(String name) { this.name = name; }
public double getSalary() { return salary; }
public void setSalary(double salary) { this.salary = salary; }
public String getDesignation() { return designation; }
public void setDesignation(String designation) { this.designation = designation; }
public Address getAddress() { return address; }
public void setAddress(Address address) { this.address = address; }
}

和一个引用的类:

package base.package;

public class Address
{
private String line1;
private String line2;
private String city;
private String state;
private long zipcode;

public String getLine1() { return line1; }
public void setLine1(String line1) { this.line1 = line1; }
public String getLine2() { return line2; }
public void setLine2(String line2) { this.line2 = line2; }
public String getCity() { return city; }
public void setCity(String city) { this.city = city; }
public String getState() { return state; }
public void setState(String state) { this.state = state; }
public long getZipcode() { return zipcode; }
public void setZipcode(long zipcode) { this.zipcode = zipcode; }
}

现在使用以下命令编译此代码:javac -d bin src/base/package/*.java。这会将位于 src 中的所有源文件编译到 bin 目录中:

base-dir
|- src
| \- base
| \- package
| |- Employee.java
| \- Address.java
\- bin
\- base
\- package
|- Employee.class
\- Address.class

要为已编译的类获取正确的 Jar 存档,请使用:jar -cf test.jar -C bin/。 这将生成一个 test.jar 存档,其中包含以下内容:

test.jar
|- base
| \- package
| |- Employee.class
| \- Address.class
\- META-INF
\- MANIFEST.MF

您现在可以删除 bin 目录及其所有内容,因为我们需要的所有文件都存储在存档中,并证明模式实际上是从 Jar 存档中的文件生成的。

随着所有准备工作最终完成,可以解决实际问题 - 如何从位于该 test.jar 存档中的 .class 文件生成模式:

只需运行此命令:schemagen -cp test.jar base.package.Employee 它应该会生成类似于以下代码片段的模式定义:

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<xs:schema version="1.0" xmlns:xs="http://www.w3.org/2001/XMLSchema">

<xs:element name="employee" type="employee"/>

<xs:complexType name="employee">
<xs:sequence>
<xs:element name="address" type="address" minOccurs="0"/>
<xs:element name="designation" type="xs:string" minOccurs="0"/>
<xs:element name="salary" type="xs:double"/>
<xs:element name="name" type="xs:string" minOccurs="0"/>
</xs:sequence>
<xs:attribute name="id" type="xs:int" use="required"/>
</xs:complexType>

<xs:complexType name="address">
<xs:sequence>
<xs:element name="city" type="xs:string" minOccurs="0"/>
<xs:element name="line1" type="xs:string" minOccurs="0"/>
<xs:element name="line2" type="xs:string" minOccurs="0"/>
<xs:element name="state" type="xs:string" minOccurs="0"/>
<xs:element name="zipcode" type="xs:long"/>
</xs:sequence>
</xs:complexType>
</xs:schema>

希望这足够简单,可以遵循


编辑:似乎 jaxb2-maven-plugin 和 ant-task 根本无法使用类文件,所以最简单和最简单的解决方案可能是提供一个脚本文件(.bat on windows; .sh 在 *nix/Mac 上)你只需手动调用命令:

因为我目前在 Windows 7 上运行,所以自动将架构生成到项目的架构子目录中的脚本如下所示:

schemagen -cp path/to/jar/*.jar -d ./schemas/ package.ClassName

然后您可以使用绑定(bind)到生成源阶段的 maven exec-plugin 简单地调用该脚本(我已将其放在项目的 scripts 子目录中):

<plugin>
<artifactId>exec-maven-plugin</artifactId>
<groupId>org.codehaus.mojo</groupId>
<executions>
<execution>
<id>Generate schemas from class files contained in a jar</id>
<phase>generate-sources</phase>
<goals>
<goal>exec</goal>
</goals>
<configuration>
<executable>${basedir}/scripts/generate-sources.bat</executable>
</configuration>
</execution>
</executions>
</plugin>

然后,在执行 mvn generate-sources 或 maven 提供的任何后期阶段时,模式应该会自动生成。


编辑:我已经稍微修改了脚本,因为它能够处理通配符,尽管您必须指定 *.jar 而不仅仅是 * - 但我猜想这应该足够好,至少这可以让您免于手动输入包含 JAXB 类的 Jar 文件的名称

关于java - 从 jar 为类文件生成 jaxb Xsd 模式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21126221/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com