我尝试使用mave-jaxb2插件将XSD转换为JAXB类,jaxb2-basics简化了插件。
pom.xml中的配置可在此post
中找到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;
答案 0 :(得分:1)
您拥有elements
媒体资源,因此您必须将注释放在xs:choice
上,而不是xs:element
上。请参阅the documentation。
您最有可能想要使用<simplify:as-element-property/>
。