我有两个最简单的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>
我们在a.xsd中定义的b.xsd中使用myType
。生成过程包括使用“剧集”功能的两个步骤。
> 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文件成功,但第二代失败。这有什么不对?
答案 0 :(得分:1)
我尝试了Apache XMLBeans 2.5.0的示例,它使用了这个命令:
scomp -srconly a.xsd b.xsd