1

我有两个最简单的 xsd 文件。

a.xsd:

<?xml version="1.0" encoding="UTF-8"?>
<schema xmlns="http://www.w3.org/2001/XMLSchema" xmlns:a="A" targetNamespace="A">
  <complexType name="myType"/>
  <element name="root" type="a:myType"/>
</schema>

b.xsd:

<?xml version="1.0" encoding="UTF-8"?>

<schema xmlns="http://www.w3.org/2001/XMLSchema" targetNamespace="B" xmlns:a="A">
  <import namespace="A"/>
  <complexType name="extendedType">
    <complexContent>
      <extension base="a:myType"/>
    </complexContent>
  </complexType>
</schema>

我们使用myType在 a.xsd 中定义的 in b.xsd。生成过程包括使用“情节”功能的两个步骤。

> xjc -episode a.episode a.xsd
parsing a schema...
compiling a schema...
a\MyType.java
a\ObjectFactory.java
a\package-info.java

> xjc b.xsd -b a.episode
parsing a schema...
[ERROR] src-resolve: Cannot resolve the name 'a:myType' to a(n) 'type definition' component.
  line 7 of file:/b.xsd

Failed to parse a schema.

第一代使用有效的 a.episode 文件成功,但第二代失败。这里有什么问题?

4

1 回答 1

1

我使用 Apache XMLBeans 2.5.0 尝试了您的示例,它使用以下命令:

scomp -srconly a.xsd b.xsd
于 2012-05-10T12:23:46.283 回答