4

このスキーマ ファイルから JAXB クラスを生成したいと思います: http://www.taxonx.org/schema/v1/taxonx1.xsd

インポートされた mods-3-1.xsd によって引き起こされたいくつかの名前の競合を、次のようにカスタマイズされたバインディングを使用して解決しました。

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

  <jxb:bindings schemaLocation="http://www.loc.gov/standards/mods/v3/mods-3-1.xsd">
    <jxb:bindings
        node="//xsd:complexType[@name='relatedItemType']/xsd:attribute[@name='type']">
        <jxb:property name="type2" />
    </jxb:bindings>

    <jxb:bindings
        node="//xsd:attributeGroup[@name='language']/xsd:attribute[@name='lang']">
        <jxb:property name="lang2" />
    </jxb:bindings>

    <jxb:bindings
        node="//xsd:complexType[@name='titleInfoType']/xsd:complexContent/xsd:extension/xsd:attribute[@name='type']">
        <jxb:property name="type3" />
    </jxb:bindings>

    <jxb:bindings
        node="//xsd:complexType[@name='nameType']/xsd:attribute[@name='type']">
        <jxb:property name="type4" />
    </jxb:bindings>

    <jxb:bindings
        node="//xsd:complexType[@name='unstructuredText']/xsd:simpleContent/xsd:extension/xsd:attribute[@name='type']">
        <jxb:property name="type5" />
    </jxb:bindings>
  </jxb:bindings>
</jxb:bindings>

クラスを生成したい場合でも、次のエラーが発生します。

parsing a schema...
compiling a schema...
[ERROR] Two declarations cause a collision in the ObjectFactory class.
line 468 of http://digir.net/schema/conceptual/darwin/manis/1.21/darwin2.xsd

[ERROR] (Related to above error) This is the other declaration.
line 326 of http://digir.sourceforge.net/schema/protocol/2003/1.0/digir.xsd

Failed to produce code.

別のカスタマイズされたバインディングを追加すると..

<jxb:bindings schemaLocation="http://digir.net/schema/conceptual/darwin/manis/1.21/darwin2.xsd">
    <jxb:bindings
        node="//xsd:element[@name='requiredList' and @substitutionGroup='digir:requiredList']">
        <jxb:property name="requiredList2" />
    </jxb:bindings>
</jxb:bindings>

別のエラーが発生します:

parsing a schema...
[ERROR] compiler was unable to honor this property customization. It is attached to a     
wrong place, or its inconsistent with other bindings.
line 34 of file:/C:/git/charaparser%20-%20Copy/resources/io/darwinCore/mods-3-1-
bindings.xml

[ERROR] (the above customization is attached to the following location in the schema)
line 468 of http://digir.net/schema/conceptual/darwin/manis/1.21/darwin2.xsd

Failed to parse a schema.

これを解決する方法はありますか?

4

2 に答える 2

0

以下のように使用できます。同じエラーが発生し、factoryMethod を使用して解決しました。

コマンド: xjc -d src -extension -b demo.xjb demo.xsd

 demo.xjb
 ================
 <jxb:bindings 
 xmlns:xs="http://www.w3.org/2001/XMLSchema"
 xmlns:jxb="http://java.sun.com/xml/ns/jaxb"
 version="2.1">
 <jxb:bindings schemaLocation="demo.xsd">
        <jxb:bindings node="//xs:complexType[@name='itemType']">
            <jxb:factoryMethod  name="Item"/>
        </jxb:bindings>
 </jxb:bindings>
 </jxb:bindings>


demo.xsd
===============
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
    xmlns:jaxb="http://java.sun.com/xml/ns/jaxb"
    jaxb:version="2.1">
 <xs:complexType name="itemType">
    <xs:annotation>
        <xs:appinfo>
            <jaxb:class name="Item"/>
        </xs:appinfo>
    </xs:annotation>
    <xs:attribute name="id" type="xs:string" use="required"/>
 </xs:complexType>
 </xs:schema>
于 2017-01-13T10:59:15.327 に答える