在带有 JAXB 项目的 Eclipse 中,我尝试生成启用了 Simplify 插件的类。
我已将所需的注释放在 XSD 文件中:
<xs:choice maxOccurs="unbounded">
<xs:element maxOccurs="unbounded" ref="ns1:flow" minOccurs="0">
<xs:annotation>
<xs:appinfo>
<simplify:as-element-property/>
</xs:appinfo>
</xs:annotation>
</xs:element>
<xs:element maxOccurs="unbounded" ref="ns1:state" minOccurs="0">
<xs:annotation>
<xs:appinfo>
<simplify:as-element-property/>
</xs:appinfo>
</xs:annotation>
</xs:element>
</xs:choice>
并在生成过程中添加 -Xsimplify 参数:
但是 XJC 编译器返回错误“无法识别的参数 -Xsimplify”
我已经从网上搜索了 2 天,但仍然找不到在 Eclipse 中启用 JAXB2-Basic 插件的指南。请帮忙!!。