jaxb2 简化插件元素未简化
jaxb2 simplify plugin elements not simplified
我尝试使用 mave-jaxb2 插件和 jaxb2-basics 简化插件将 XSD 转换为 JAXB 类。
pom.xml中的配置在此
中可用
sample.xsd(复选型)
<xs:complexType name="doclist">
<xs:sequence>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element name="document1" type="type1">
<xs:annotation>
<xs:appinfo>
<simplify:as-reference-property/>
</xs:appinfo>
</xs:annotation>
</xs:element>
<xs:element name="document2" type="type2">
</xs:element>
</xs:choice>
</xs:sequence>
<xs:attribute name="heading" type="xs:string" />
</xs:complexType>
但是生成的 JAXB 类 有 aOrB 引用。
@XmlElements({
@XmlElement(name = "document1", type = Type1.class),
@XmlElement(name = "document2", type = Type2.class)
})
protected List<Object> document1OrDocument2;
您有一个 elements
属性,因此您必须将注释放在 xs:choice
,而不是 xs:element
。请参阅 the documentation。
您很可能想使用 <simplify:as-element-property/>
。
我尝试使用 mave-jaxb2 插件和 jaxb2-basics 简化插件将 XSD 转换为 JAXB 类。
pom.xml中的配置在此
sample.xsd(复选型)
<xs:complexType name="doclist">
<xs:sequence>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element name="document1" type="type1">
<xs:annotation>
<xs:appinfo>
<simplify:as-reference-property/>
</xs:appinfo>
</xs:annotation>
</xs:element>
<xs:element name="document2" type="type2">
</xs:element>
</xs:choice>
</xs:sequence>
<xs:attribute name="heading" type="xs:string" />
</xs:complexType>
但是生成的 JAXB 类 有 aOrB 引用。
@XmlElements({
@XmlElement(name = "document1", type = Type1.class),
@XmlElement(name = "document2", type = Type2.class)
})
protected List<Object> document1OrDocument2;
您有一个 elements
属性,因此您必须将注释放在 xs:choice
,而不是 xs:element
。请参阅 the documentation。
您很可能想使用 <simplify:as-element-property/>
。