内容简介:题:classes?信息:
题:
如何让xjc / Jaxb为同一命名空间中包含重复elementdefinitions的几个模式生成propper javaclasses?
信息:
我有三个.xsd架构:A,B和C.所有都有相同的targetnamespace.
他们都是给我的3个shemas,我不会以任何方式允许以任何方式改变它们.
它们有一些也可以在B或C中找到的元素(但是A也有许多自我声明的元素)
示例:这与A和C的“代码”相同:
<xs:simpleType name="y_ym_ymdDatoType"> <xs:union memberTypes="arcgYearType arcgYearMonthType arcDateType"/> </xs:simpleType> <xs:simpleType name="arcgYearType"> <xs:restriction base="xs:gYear"> <xs:minInclusive value="1700"/> <xs:maxInclusive value="2100"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="arcgYearMonthType"> <xs:restriction base="xs:gYearMonth"> <xs:minInclusive value="1700-01"/> <xs:maxInclusive value="2100-12"/> </xs:restriction> </xs:simpleType> <xs:simpleType name="arcDateType"> <xs:restriction base="xs:date"> <xs:minInclusive value="1700-01-01"/> <xs:maxInclusive value="2100-12-31"/> </xs:restriction> </xs:simpleType>
当使用xjc将它们编译成javaclasses时,我得到以下异常:
[ERROR] 'y_ym_ymdDatoType' is already defined line 297 of file:../c.xsd [ERROR] (related to above error) the first definition appears here line 309 of file:../a.xsd
其他元素也是如此:arcgYearType,arcgYearMonthType和arcDateType.
我已经阅读了一个可能解决这个问题的绑定文件,但我不知道如何做到这一点,所以示例将是首选.
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网
猜你喜欢:- CSS 基础:块级元素、行内元素、替换元素、非替换元素
- CSS 技巧篇(六):display设置元素为行内元素时,元素之间存在间隙问题
- 探究行内元素和块级元素
- 重学前端:块级元素与内联元素
- 使CSS伪元素:在与主元素相同的高度之前
- 求非负元素数组所有元素能组合的最大字符串
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。