如何使用 jaxb2-maven-plugin 2.x 从 WSDL 生成 Java 类?

Posted

技术标签:

【中文标题】如何使用 jaxb2-maven-plugin 2.x 从 WSDL 生成 Java 类?【英文标题】:How to generate Java classes from WSDL with jaxb2-maven-plugin 2.x? 【发布时间】:2017-07-06 17:15:11 【问题描述】:

我正在尝试使用插件jaxb2-maven-plugin 从 wsdl 创建 Java 类。

对于 1.5 版,Generate classes with jaxb2-maven-plugin from WSDL 中的此代码有效:

        <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>jaxb2-maven-plugin</artifactId>
                <version>1.5</version>
                <executions>
                    <execution>
                        <id>xjc</id>
                        <goals><goal>xjc</goal></goals>
                    </execution>
                </executions>
                <configuration>
                    <!-- Package to store the generated file -->
                    <packageName>com.example.demo.wsdl</packageName>
                    <!-- Treat the input as WSDL -->
                    <wsdl>true</wsdl>
                    <!-- Input is not XML schema -->
                    <xmlschema>false</xmlschema>
                    <!-- The WSDL file that you saved earlier -->
                    <schemaFiles>horarios.wsdl</schemaFiles>
                    <!-- The location of the WSDL file -->
                    <schemaDirectory>$project.basedir/src/main/resources</schemaDirectory>
                    <!-- The output directory to store the generated Java files -->
                    <outputDirectory>$project.basedir/src/main/java</outputDirectory>
                    <!-- Don't clear output directory on each run -->
                    <clearOutputDir>false</clearOutputDir>
                </configuration>
            </plugin>

但是当使用插件版本 2.3.1 时,我得到这个错误:

Failed to execute goal org.codehaus.mojo:jaxb2-maven-plugin:2.3.1:xjc (xjc) on project demo: MojoExecutionException: NoSchemasException -> [Help 1]

有人知道如何在这个新插件版本中使用 WSDL 文件吗?

【问题讨论】:

【参考方案1】:

我已经找到了解决办法。

当 jaxb2-maven-plugin 版本 >= 2.0 时,您必须使用以下配置:

             <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>jaxb2-maven-plugin</artifactId>
                <version>2.3.1</version>
                <executions>
                    <execution>
                        <id>xjc</id>
                        <goals>
                            <goal>xjc</goal>
                        </goals>
                    </execution>
                </executions>
                <configuration>
                    <packageName>com.example.demo.wsdl</packageName>
                    <sourceType>wsdl</sourceType>
                    <sources>
                        <source>src/main/resources/horarios.wsdl</source>
                    </sources>
                    <outputDirectory>target/generated-sources/</outputDirectory>
                    <clearOutputDir>false</clearOutputDir>
                </configuration>
            </plugin>

不同之处不仅在于语法。该版本不会在项目(src/main/java)中创建类,它会在您在outputDirectory 中编写的目录和packageName 的包中创建。

当您使用生成的类时,它就像在同一个项目中一样透明。

【讨论】:

更多相关信息:***.com/questions/35242941/…【参考方案2】:

如果您想从 XSD 开始:

              <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>jaxb2-maven-plugin</artifactId>
                <version>2.3.1</version>
                <executions>
                    <execution>
                        <id>xjc</id>
                        <goals>
                            <goal>xjc</goal>
                        </goals>
                    </execution>
                </executions>

                <configuration>
                    <xjbSources>
                        <xjbSource>src/main/resources/global.xjb</xjbSource>
                    </xjbSources>
                    <sources>
                        <source>src/main/resources/Ventas.xsd</source>
                    </sources>
                    <outputDirectory>$basedir/src/main/java</outputDirectory>
                    <clearOutputDir>false</clearOutputDir>
                </configuration>
            </plugin>

【讨论】:

以上是关于如何使用 jaxb2-maven-plugin 2.x 从 WSDL 生成 Java 类?的主要内容,如果未能解决你的问题,请参考以下文章

无法使用jaxb2-maven-plugin将WSDL解析为不同的包

在jaxb2-maven-plugin中为schemagen添加显式源目录

jaxb2 版本 2 不允许使用 StaleFile 元素

使用-f选项时,Maven重复类具有生成的源代码

哪个是生成 Web 服务客户端的最佳 Maven 插件?

JAXB 3.0(Jakarta EE 9)是不是有任何 maven 插件?