3

私はjaxbを使用してxsdファイルからJavaソースコードを生成しています。

ソースが生成されるパッケージを要素ごとに指定できるようにしたいのですが、ソースを生成するたびに次のエラーが発生します。

[ERROR] ****/src/main/xjb/common.xjb[8,24]
com.sun.istack.SAXParseException2: compiler was unable to honor this schemaBinding customization. It is attached to a wrong place, or its inconsistent with other bindings.

私のバインディングファイルcommon.xjbは、名前(属性値)'api'の要素をパッケージ'com.myxml.common.api'に配置しようとしています。

<jxb:bindings version="1.0" xmlns:jxb="http://java.sun.com/xml/ns/jaxb" xmlns:xs="http://www.w3.org/2001/XMLSchema">

    <jxb:bindings schemaLocation="../xsd/common/common.xsd" node="/xs:schema">

        <jxb:bindings node="//xs:element[@name='api']">
            <jxb:schemaBindings>
                <jxb:package name="com.myxml.common.api" />
            </jxb:schemaBindings>
        </jxb:bindings>

    </jxb:bindings>

</jxb:bindings>

私のxsdファイルcommon.xsdは次のとおりです。

<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" version="1.1" xml:lang="en">

    <xs:element name='api'>
        <xs:complexType>
            <xs:simpleContent>
                <xs:extension base="xs:string" />
            </xs:simpleContent>
        </xs:complexType>
    </xs:element>

</xs:schema>

そして、私は次のMavenプラグインを使用してすべてを実行しています。

<plugin>
    <groupId>org.codehaus.mojo</groupId>
    <artifactId>jaxb2-maven-plugin</artifactId>
    <version>1.5</version>

    <executions>
        <execution>
            <id>schema00-generate</id>
            <phase>generate-sources</phase>
            <goals>
                <goal>xjc</goal>
            </goals>
            <configuration>
                <schemaFiles>common/common.xsd</schemaFiles>
                <bindingFiles>common.xjb</bindingFiles>
                <bindingDirectory>${project.basedir}/src/main/xjb</bindingDirectory>
            </configuration>
        </execution>
    </executions>
</plugin>

なぜこのエラーが発生するのですか?どうすれば解決できますか?この段階では、私が知っている他のバインディングは使用されていません。

4

1 に答える 1

3

同じ名前空間の要素を異なるパッケージにマップできないため、パッケージをトップレベル以外に定義することはできません

于 2012-11-24T15:18:14.133 に答える