2

下面是演示该问题的绝对微不足道的最小示例。以下导入配置中的三个模式文件:A.xsdB.xsdC.xsd :

C.xsd ---------------- imports ----------------> A.xsd
  \                                          /  
   \---- imports ---> B.xsd --- imports ----/

因此A.xsdC.xsd直接导入,并再次通过B.xsd间接导入。当同时使用目录绑定文件(甚至是空文件)时,尝试在C.xsd上运行xjc(版本2.2.4)时会出现问题。

a.xsd

<schema targetNamespace="foo://a"
           xmlns="http://www.w3.org/2001/XMLSchema">
   <simpleType name="year">
      <restriction base="dateTime">
         <pattern value="\d{4}"/>
      </restriction>
   </simpleType>
</schema>

B.xsd

<schema targetNamespace="foo://b"
xmlns="http://www.w3.org/2001/XMLSchema">
   <import namespace="foo://a" schemaLocation="boo://a.xsd"/>
</schema>

C.xsd

<schema xmlns="http://www.w3.org/2001/XMLSchema" targetNamespace="foo://c">
  <import namespace="foo://a" schemaLocation="A.xsd"/>
  <import namespace="foo://b" schemaLocation="B.xsd"/>
</schema>

目录.xml

<catalog xmlns="urn:oasis:names:tc:entity:xmlns:xml:catalog"> 
    <system systemId="boo://a.xsd"  uri="A.xsd"/>
</catalog>

绑定.xjb

<bindings xmlns="http://java.sun.com/xml/ns/jaxb" version="2.1"/>

给定上述文件,所有文件都放在同一目录中,以下调用成功:

xjc -d src -extension -catalog catalog.xml C.xsd 

而以下调用:

xjc -d src -extension -catalog catalog.xml C.xsd -b bindings.xjb 

...失败并显示类似错误的消息(指向一些内部混乱?):

parsing a schema...
[ERROR] 'year' is already defined
  line 8 of file:/home/brutus/A.xsd

[ERROR] (related to above error) the first definition appears here
  line 3 of file:/home/brutus/A.xsd

Failed to parse a schema.

更新

发布了一个错误报告

4

2 回答 2

1

我使用 Mac 的 JDK 1.7.0_21-b12 附带的 XJC 运行了您的示例,它运行良好。您应该只需要从 JAXB 参考实现(请参阅:https ://jaxb.java.net/ )切换不更新版本的 XJC 即可使您的用例正常工作。

了解更多信息

于 2013-06-14T10:48:06.517 回答
0

如果不是相同的问题,我有一个非常相似的问题。你能找到任何解决方法吗?用jaxb-ri-2.2.7xjc 2.2.4-2 (OpenJDK 7u25)测试jaxb-ri-2.2.1.1-4 of GlassFish

最有趣的是,当使用没有 schemaLocation 的导入和public目录条目时,一切正常。不幸的是,我无法调整架构。

这是一个小例子。

失败:

<?xml version="1.0" encoding="UTF-8"?>
<schema xmlns:test="http://www.test.com/1.0" xmlns="http://www.w3.org/2001/XMLSchema" xmlns:xlink="http://www.w3.org/1999/xlink" targetNamespace="http://www.test.com/1.0" elementFormDefault="qualified" attributeFormDefault="unqualified">
    <import namespace="http://www.w3.org/1999/xlink" schemaLocation="http://www.w3.org/1999/xlink.xsd"/>

    <element name="TestElement" type="test:TestType"/>
    <complexType name="TestType">
        <sequence>
            <element name="name" type="string"/>
        </sequence>
        <attribute ref="xlink:title" use="required"/>
    </complexType>
</schema>

在职的:

<?xml version="1.0" encoding="UTF-8"?>
<schema xmlns:test="http://www.test.com/1.0" xmlns="http://www.w3.org/2001/XMLSchema" xmlns:xlink="http://www.w3.org/1999/xlink" targetNamespace="http://www.test.com/1.0" elementFormDefault="qualified" attributeFormDefault="unqualified">
    <import namespace="http://www.w3.org/1999/xlink"/>

    <element name="TestElement" type="test:TestType"/>
    <complexType name="TestType">
        <sequence>
            <element name="name" type="string"/>
        </sequence>
        <attribute ref="xlink:title" use="required"/>
    </complexType>
</schema>

目录文件(两者):

<!DOCTYPE catalog
    PUBLIC "-//OASIS//DTD Entity Resolution XML Catalog V1.0//EN"
           "http://www.oasis-open.org/committees/entity/release/1.0/catalog.dtd">
<catalog xmlns="urn:oasis:names:tc:entity:xmlns:xml:catalog">

    <system
        systemId="http://www.w3.org/1999/xlink.xsd"
        uri="../schemas/xlink/1.0.0/xlinks.xsd"/>
    <public
        publicId="http://www.w3.org/1999/xlink"
        uri="../schemas/xlink/1.0.0/xlinks.xsd"/>

</catalog>

执行(两者):

xjc schemas/xlink/1.0.0/xlinks.xsd schemas/test.xsd -b xjb/xlink.xjb -extension -d .build -catalog catalog/catalog.xml

于 2013-12-03T09:17:04.613 回答