25

我有几十个.xsd文件要为其自动生成代码。当我尝试同时生成所有文件时,其中一些文件的名称会发生​​冲突。

我专注于尝试让其中的两个工作。

当我得到这两个工作时,我将解决其余的问题。但我现在只关注其中两个文件。我无法控制它们,它们来自供应商并遵循“标准”,因此出于多种原因编辑它们不是一种选择。

我正在使用maven-jaxb2-plugin来处理这些文件。

我按照答案中的链接和我在网上找到的其他说明中的建议添加了一个binding.xjb文件。mat b但我收到以下错误,没有输出。

<?xml version="1.0" encoding="UTF-8"?>
<jxb:bindings version="2.1"
              xmlns:xsi="http://www.w3.org/2000/10/XMLSchema-instance"
              xmlns:xjc="http://java.sun.com/xml/ns/jaxb/xjc"
              xmlns:jxb="http://java.sun.com/xml/ns/jaxb"
              xmlns:xs="http://www.w3.org/2001/XMLSchema"
              xsi:schemaLocation=" http://java.sun.com/xml/ns/jaxb http://java.sun.com/xml/ns/jaxb/bindingschema_2_0.xsd">
  <jxb:bindings schemaLocation="mac-3.4.xsd">
    <jxb:schemaBindings>
      <jxb:package name="my.company.mac"/>
    </jxb:schemaBindings>
  </jxb:bindings>
  <jxb:bindings schemaLocation="mac-stylesheet-3.4.xsd">
    <jxb:schemaBindings>
      <jxb:package name="my.company.stylesheet"/>
    </jxb:schemaBindings>
  </jxb:bindings>
</jxb:bindings>

给出以下错误

[ERROR] Error while parsing schema(s).Location [ file:/C:/Users/Jarrod%20Roberson/Projects/spa-tools/spa-lib/src/main/sc
hema/mac-stylesheet-3.4.xsd{165,33}].
org.xml.sax.SAXParseException: 'halign' is already defined

冒犯的元素是:(还有很多其他的,这只是第一个冲突的)

<xsd:simpleType name="halign">
  <xsd:restriction base="xsd:string">
    <xsd:enumeration value="left" />
    <xsd:enumeration value="center" />
    <xsd:enumeration value="right" />
  </xsd:restriction>
</xsd:simpleType>

并且在每个.xsd文件中都是相同的,我如何解决这种重复,要么只生成一个类,要么每个类都生成到它们自己的包命名空间中?

这不是像这样的唯一重复元素,它们有很多,因此仅尝试从文件中删除它们也不是一种选择。

halign是在多个.xsd文件中,我想将它们放在各自的包中,或者能够告诉编译器使用生成的第一个包。

这是我在尝试外部.xjb文件之前开始的地方,只需packagepom.xml.

如何将绑定配置为忽略重复配置、将它们映射到单独的包或将它们映射到现有实现?

4

5 回答 5

11

我对此有一个中途的解决方法,但它非常耗时。<execution/>我必须为每个具有重复条目的文件创建一个单独的文件。

<executions>
  <execution>
    <id>jaxb-mac</id>
    <phase>generate-sources</phase>
    <goals>
      <goal>generate</goal>
    </goals>
    <configuration>
      <forceRegenerate>true</forceRegenerate>
      <generatePackage>my.company.mac</generatePackage>
      <schemaDirectory>src/main/schema</schemaDirectory>
      <schemaIncludes>
        <include>mac-3.4.xsd</include>
      </schemaIncludes>
    </configuration>
  </execution>
  <execution>
    <id>jaxb-stylesheet</id>
    <phase>generate-sources</phase>
    <goals>
      <goal>generate</goal>
    </goals>
    <configuration>
      <forceRegenerate>true</forceRegenerate>
      <generatePackage>my.company.stylesheet</generatePackage>
      <schemaDirectory>src/main/schema</schemaDirectory>
      <schemaIncludes>
        <include>mac-stylesheet-3.4.xsd</include>
      </schemaIncludes>
    </configuration>
  </execution>

<forceRegenerate>true</forceRegenerate>很重要,或者只有第一个<execution/>会运行,其余的会认为没有必要运行,因为我正在生成到同一个目录中。

我仍然想要一个劳动强度较低的解决方案来处理重复项。

我认为,如果我将第一个主 .xsd 设为一个单独的模块,并构建到它自己的 .jar 文件中,那么我可以使用该<episode/>标签并让它一遍又一遍地跳过生成相同的重复元素,因为它们在定义上是相同的。

从那以后,我决定尽可能放弃 XML 并完全放弃 JAXB。截至本次编辑,有更新更好的方法来解析 XML 并将其映射到对象。

于 2011-07-14T16:33:39.163 回答
5

意识到这是旧的,但我有同样的错误,它可以通过不指定目标包来解决它,即 xjc 的 -b 选项。然后每个重复的元素都在它们自己的命名空间包中创建并且没有冲突。

于 2012-11-15T11:12:07.003 回答
3

我发布了我的gradle解决方案,它解决了重复问题并且不需要 xjb 文件:

task generateJaxb() {
    ext.sourcesDir = "${buildDir}/generated-sources/jaxb"
    ext.classesDir = "${buildDir}/classes/jaxb"
    ext.schemaDir = "src/resources/schemas"
    ext.tmp = "${buildDir}/tmp/xjc"

    doLast() {
        project.ant {
            taskdef name: "xjc", classname: "com.sun.tools.xjc.XJCTask",
                    classpath: configurations.jaxb.asPath

            delete(dir: tmp)
            mkdir(dir: tmp)
            delete(dir: sourcesDir)
            delete(dir: classesDir)
            mkdir(dir: sourcesDir)
            mkdir(dir: classesDir)
        }

        fileTree(schemaDir){
            include '**/*.xsd'
            include '**/*.wsdl'
        }.each{File file->
            //println file
            project.ant {
                taskdef name: "xjc", classname: "com.sun.tools.xjc.XJCTask",
                        classpath: configurations.jaxb.asPath
                xjc(destdir: tmp, schema:"${file.getAbsolutePath()}") {
                    arg(value: "-wsdl")
                    produces(dir: tmp, includes: "**/*.java")
                }
                copy(todir: sourcesDir) {
                    fileset(dir: tmp, erroronmissingdir: false) {
                        include(name: "**/*.java")
                    }
                }
                delete(dir: tmp)
                mkdir(dir: tmp)
            }
        }
        project.ant {
            javac(destdir: classesDir, source: 1.6, target: 1.6, debug: true,
                    debugLevel: "lines,vars,source",
                    classpath: configurations.jaxb.asPath) {
                src(path: sourcesDir)
                include(name: "**/*.java")
                include(name: "*.java")
            }

            copy(todir: classesDir) {
                fileset(dir: sourcesDir, erroronmissingdir: false) {
                    exclude(name: "**/*.java")
                }
            }
        }
    }
}

configurations {
    jaxb
}

dependencies {
    jaxb("com.sun.xml.bind:jaxb-xjc:2.2.4-1")
    compile(files(generateJaxb.classesDir).builtBy(generateJaxb))
}

jar {
    from generateJaxb.classesDir
}
于 2015-05-27T18:03:05.863 回答
1

<schemaBindings>向 XSD添加一个元素:

<schemaBindings>
    <package name="com.whatever.stuff" />
</schemaBindings>

来源

于 2011-07-13T15:21:09.713 回答
1

我们有一个类似的问题:我们在同一个目录中有一个 wsdl 文件和两个 xsd 文件。wsdl 文件导入两个 xsd 文件。问题是 JAXB 正在考虑所有三个文件并抛出“...已定义”错误。它基本上是在抱怨它在 wsdl 和 xsd 文件中看到了相同的元素。

我们可以在maven 插件配置(在 pom.xml 中)中通过添加排除标记来解决此问题,如下例所示:

    <build>
    <plugins>
        <plugin>
            <groupId>org.jvnet.jaxb2.maven2</groupId>
            <artifactId>maven-jaxb2-plugin</artifactId>
            <version>0.12.3</version>
            <executions>
                <execution>
                    <goals>
                        <goal>generate</goal>
                    </goals>
                </execution>
            </executions>
            <configuration>
                <schemaLanguage>WSDL</schemaLanguage>
                <generatePackage>mywsdl.wsdl</generatePackage>
                <args><arg>-XautoNameResolution</arg></args>
                <schemas>
                    <schema>
                        <fileset>
                            <excludes>
                                <exclude>*.xsd</exclude>
                            </excludes>
                        </fileset>
                    </schema>
                </schemas>
            </configuration>
        </plugin>
    </plugins>
</build>
于 2017-04-19T14:25:33.477 回答