jaxb2简化了未简化的插件元素

时间:2016-01-10 11:18:10

标签: xsd jaxb maven-jaxb2-plugin jaxb2-simplify-plugin

我尝试使用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;

1 个答案:

答案 0 :(得分:1)

您拥有elements媒体资源,因此您必须将注释放在xs:choice上,而不是xs:element上。请参阅the documentation

您最有可能想要使用<simplify:as-element-property/>