将XJB与jaxb2-maven-plugin一起使用

时间:2015-06-14 21:12:54

标签: maven jaxb2 xjc jaxb2-maven-plugin xjb

我有一个以下结构的多模块maven项目:

root-module
    |__module-a
    |    |__src
    |        |__main
    |            |__xsd
    |            |    |__my.xsd
    |            |__xjb
    |                 |__my.xjb
    |__module-b

根模块的POM只是聚合模块a和b(以及其他内容):

<project>
  <artifactId>root-module</artifactId>
  <packaging>pom</packaging>
  <modules>
    <module>module-a</module>
    <module>module-b</module>
  </modules>
</project>

模块a的POM如下(除其他外):

<project>
  <parent>
    <artifactId>root-module</artifactId>
  </parent>
  <artifactId>module-a</artifactId>
  <properties>
    <my-definitions.xsd>${basedir}/src/main/xsd/my.xsd</my-definitions.xsd>
    <my-bindings.xjb>${basedir}/src/main/xjb/my.xjb</my-bindings.xjb>
    <my.output>${basedir}/target/generated-sources/jaxb/my</my.output>
  </properties>
  <build>
    <plugins>
        <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>jaxb2-maven-plugin</artifactId>
                <executions>
                    <execution>
                        <id>generate-my-classes</id>
                        <phase>generate-sources</phase>
                        <goals><goal>xjc</goal></goals>
                        <configuration>
                            <sources><source>${my-definitions.xsd}</source></sources>
                            <xjbSources><xjbSource>${my-bindings.xjb}</xjbSource></xjbSources>
                            <outputDirectory>${my.output}</outputDirectory>
                        </configuration>
                    </execution>
                </executions>
        </plugin>
    </plugins>
  </build>
</project>

所以当我在module-a运行mvn时,一切正常,构建成功。但是当我在root-module上运行它时,我从XJC插件中获取异常,它试图在根模块下找到绑定文件:

com.sun.istack.SAXParseException2; IOException thrown when processing "file:/home/root-module/src/main/xjb/my.xjb". Exception: java.io.FileNotFoundException: /home/root-module/src/main/xjb/my.xjb (The system cannot find the path specified).

有趣的是,它能够正确定位XSD:

[ERROR] Failed to execute goal org.codehaus.mojo:jaxb2-maven-plugin:2.1:xjc (generate-my-classe) on project module-a:
[ERROR] +=================== [XJC Error]
[ERROR] |
[ERROR] | 0: file:/home/root-module/module-a/src/main/xsd/my.xsd
[ERROR] |
[ERROR] +=================== [End XJC Error]
  • 任何线索?
  • 这是构建脚本中的配置问题吗?

我的构建系统的细节:

Using Maven 3.2.5

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

here引用JAXB2 Maven插件文档。 还搜索了关于SO的一些相关问题,但他们没有在任何地方解释我的具体问题。

更新:看起来像open issue。保持线程打开,以防有解决方法。

2 个答案:

答案 0 :(得分:2)

更新到插件的2.2版似乎有效。

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

使用插件2.1版时遇到了同样的问题。只需更改到2.2版就可以解决问题。

答案 1 :(得分:0)

在插件解析可用之前,我正在使用以下ant-run hack:

    <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-antrun-plugin</artifactId>
        <executions>
            <execution>
                <id>generate-my-classes</id>
                <phase>generate-sources</phase>
                <goals>
                  <goal>run</goal>
                </goals>
                <configuration>
                    <tasks>
                        <mkdir dir="${project.build.directory}/generated-sources/jaxb/my" />
                        <exec executable="${env.JAVA_HOME}/bin/xjc.exe" dir="${project.basedir}/src/main/xsd">
                            <arg value="-p" />
                            <arg value="my.package" />
                            <arg value="-b" />
                            <arg value="${project.basedir}/src/main/xjb" />
                            <arg value="-d" />
                            <arg value="${project.build.directory}/generated-sources/jaxb" />
                            <arg value="." />
                        </exec>
                    </tasks>
                </configuration>
            </execution>
        </executions>
    </plugin>

<强>更新

关于Github的讨论。

考虑Apache CXF Utils作为替代方案。