我正在努力将JAXB 1.0和max JDK 1.6 Web应用程序升级到JAXB 2.0和JDK 1.7支持。
当尝试在Java 7中运行应用程序时,我们遇到了与JAXB类有关的问题,这些问题似乎与此相关:
Why did PropertyDescriptor behavior change from Java 1.6 to 1.7?
似乎JDK 1.7中所做的更改是不支持任何具有void之外的返回类型的setter。我认为切换到JAXB 2.0会导致不再生成这些setter,但它们仍然会生成并导致问题。
对于我们的应用程序,我们定义XSD文件,然后作为maven构建过程的一部分,我们从这些XSD生成java文件。
以下是我尝试创建以下列表的complexType:
<xs:complexType name="connection">
<xs:annotation>
<xs:documentation>Common connection info - switch name, host IP name and port</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="switchName">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="4"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="hostIPName">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="32"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="hostIPPortNumber">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="5"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
</xs:sequence>
</xs:complexType>
以下是我在主对象中定义它的行:
<xs:element name="connectionList" type="dncommon:connection" maxOccurs="unbounded" />
以下是在此字段的JAXB对象中生成的内容:
public Connection[] getConnectionList() {
if (this.connectionList == null) {
return new Connection[ 0 ] ;
}
Connection[] retVal = new Connection[this.connectionList.length] ;
System.arraycopy(this.connectionList, 0, retVal, 0, this.connectionList.length);
return (retVal);
}
public Connection getConnectionList(int idx) {
if (this.connectionList == null) {
throw new IndexOutOfBoundsException();
}
return this.connectionList[idx];
}
public int getConnectionListLength() {
if (this.connectionList == null) {
return 0;
}
return this.connectionList.length;
}
public void setConnectionList(Connection[] values) {
int len = values.length;
this.connectionList = ((Connection[]) new Connection[len] );
for (int i = 0; (i<len); i ++) {
this.connectionList[i] = values[i];
}
}
public Connection setConnectionList(int idx, Connection value) {
return this.connectionList[idx] = value;
}
最后一个方法是它抱怨的 - 我们正在尝试设置连接列表的特定索引,但它找到了setConnectionList方法,并且不喜欢它的返回类型为Connection。
以下是我在生成这些类的pom.xml中设置的内容:
<dependencies>
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>2.2.7</version>
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
<version>2.2.7</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.jvnet.jaxb2.maven2</groupId>
<artifactId>maven-jaxb2-plugin</artifactId>
<version>0.9.0</version>
<executions>
<execution>
<goals>
<goal>generate</goal>
</goals>
</execution>
</executions>
<configuration>
<generateDirectory>src/main/java</generateDirectory>
<forceRegenerate>true</forceRegenerate>
</configuration>
</plugin>
</plugins>
</build>
有谁知道如何让JAXB不生成具有数组设置器返回类型的setter?我没有看到我的XSD设置有任何问题 - 我的所有研究都告诉我要像我一样定义它。非常感谢任何帮助。
谢谢,
丹
答案 0 :(得分:0)
尝试使用此maven插件配置:
<plugin>
<groupId>org.jvnet.jaxb2.maven2</groupId>
<artifactId>maven-jaxb2-plugin</artifactId>
<version>0.8.1</version>
<executions>
<execution>
<goals>
<goal>generate</goal>
</goals>
<configuration>
<args>
<arg>-Xcollection-setter-injector</arg>
</args>
<plugins>
<plugin>
<groupId>net.java.dev.vcc.thirdparty</groupId>
<artifactId>collection-setter-injector</artifactId>
<version>0.5.0-1</version>
</plugin>
</plugins>
<specVersion>2.2</specVersion>
<extension>true</extension>
<schemaDirectory><!--your schema directory--></schemaDirectory>
<schemaInclude>
<include>*.xsd</include>
</schemaInclude>
</configuration>
</execution>
</executions>
</plugin>