我正在尝试从几个特定的 XSD 生成 Java 类xjc
。这些模式有一些共同的定义,因此它们导入了许多常见的 XSD。特别是,它们可以包括从零到所有常见的 XSD。
我想生成从特定 XSD 到特定包的所有类,但将通用模式的生成类保存在一个通用包中,这样它们就不会在源树中的每个特定模式中重复。
我了解到自定义绑定可用于基于每个模式指定包,例如:
<jxb:bindings schemaLocation="common1.xsd" node="/xsd:schema">
<jxb:schemaBindings>
<jxb:package name="mypackage.commonclasses"/>
</jxb:schemaBindings>
</jxb:bindings>
我有以下结构:
schemas
| - common
| | - common1.xsd --> XSD with common types #1
| | - ...
| | - commonN.xsd --> XSD with common types #N
| | - commonBindings.xjb --> Defines package "mypackage.commons" for common*.xsd
| - specific1
| | - specific1.xsd --> Includes ../common/common{1-N}.xsd
| | - specific1.xjb --> Defines package "mypackage.specific1" for specific1.xsd
| - specificN
| | - specificN.xsd --> Includes only ../common/common1.xsd
| | - specificN.xjb --> Defines package "mypackage.specificN" for specificN.xsd
这一切都适用于:
xjc -b schemas/specific1
-b schemas/common
schemas/specific1/specific1.xsd
它生成 in 的类和specific1.xsd
inmypackage.specific1
的公共类mypackage.commons
。但是当我尝试为 生成类时specificN
,xjc
会引发以下错误:
[ERROR] "file:/drive/dir/schemas/common/common1.xsd" is not a part of
this compilation. Is this a mistake for "/drive/dir/schemas/common/commonBindings.xjb"?
line 2 of file:/drive/dir/schemas/common/commonBindings.xjb
对于未在任何特定 xsd 中导入的每个常见 XSD,我都会重复此错误。
有什么方法可以xjc
忽略commonBindings.xjb
我正在为其生成类的 XSD 中未使用的绑定?
或者,我是否使用这种方法瞄准了错误的方向,例如,应该在特定 xsd 中使用注释?如果可能的话,我想避免修改模式。