38

当我尝试运行“mvn generate-sources”时,这是我的输出:

SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".
SLF4J: Defaulting to no-operation (NOP) logger implementation
SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further details.
[INFO] Scanning for projects...
[INFO]                                                                         
[INFO] ------------------------------------------------------------------------
[INFO] Building gensourcesfromwsdl 0.0.1-SNAPSHOT
[INFO] ------------------------------------------------------------------------
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 0.104s
[INFO] Finished at: Tue Aug 20 15:41:10 BST 2013
[INFO] Final Memory: 2M/15M
[INFO] ------------------------------------------------------------------------

我没有收到任何错误,但没有从 wsdl 文件生成的 java 类。

这是我运行插件的 pom.xml 文件:

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <groupId>gensourcesfromwsdl</groupId>
    <artifactId>gensourcesfromwsdl</artifactId>
    <version>0.0.1-SNAPSHOT</version>

    <build>
        <pluginManagement>
            <plugins>
                <plugin>
                    <groupId>org.codehaus.mojo</groupId>
                    <artifactId>jaxws-maven-plugin</artifactId>
                    <version>1.12</version>
                    <executions>
                        <execution>
                            <goals>
                                <goal>wsimport</goal>
                            </goals>
                            <configuration>
                                <wsdlLocation>http://mysite/firstwsdl.asmx?wsdl</wsdlLocation>
                                <packageName>com</packageName>
                            </configuration>
                        </execution>
                    </executions>
                </plugin>
            </plugins>
        </pluginManagement>
    </build>

</project>

我究竟做错了什么 ?包com存在于项目 'gensourcesfromwsdl' 中,并且 wsdl 位置有效。

当我wsimport通过命令行运行时: >wsimport -keep -verbose http://mysite/firstwsdl.asmx?wsdl生成类。

4

7 回答 7

49

要从 WSDL 生成类,您只需要在 pom.xml 中的 build-helper-maven-plugin 和 jaxws-maven-plugin
确保已将 wsdl 放在文件夹 src/main/resources/wsdl 下,并在 src/main /resources/schema,从项目根目录运行命令“mvn generate-sources”。

C:/Project root directory > mvn generate-sources

生成的java类可以位于文件夹下

target/generated/src/main/java/com/raps/code/generate/ws.

pom.xml 片段

<plugin>
    <groupId>org.codehaus.mojo</groupId>
    <artifactId>build-helper-maven-plugin</artifactId>
    <version>1.9</version>
    <executions>
        <execution>
            <id>add-source</id>
            <phase>generate-sources</phase>
            <goals><goal>add-source</goal></goals>
            <configuration>
                <sources>
                    <source>${project.build.directory}/generated/src/main/java</source>
                </sources>
            </configuration>
        </execution>
    </executions>
</plugin>

<plugin>
    <groupId>org.codehaus.mojo</groupId>
    <artifactId>jaxws-maven-plugin</artifactId>
    <version>1.12</version>
    <configuration>
        <wsdlDirectory>${project.basedir}/src/main/resources/wsdl</wsdlDirectory>
        <packageName>com.raps.code.generate.ws</packageName>
        <keep>true</keep>
        <sourceDestDir>${project.build.directory}/generated/src/main/java</sourceDestDir>
    </configuration>
    <executions>
        <execution> 
            <id>myImport</id>
            <goals><goal>wsimport</goal></goals>
        </execution>
    </executions>
</plugin>
于 2016-03-10T23:51:43.313 回答
29

这是一个如何使用 jaxws maven 插件从 url 或文件位置(从 wsdl 文件位置被注释)生成类的示例。

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<build>  
    <plugins>           
        <!-- usage of jax-ws maven plugin-->
        <plugin> 
            <groupId>org.codehaus.mojo</groupId>
            <artifactId>jaxws-maven-plugin</artifactId>
            <version>1.12</version>
            <executions> 
                <execution> 
                    <id>wsimport-from-jdk</id>
                    <goals>
                        <goal>wsimport</goal>
                    </goals>
                </execution>
            </executions>
            <configuration>
                <!-- using wsdl from an url -->
                <wsdlUrls>
                    <wsdlUrl>
                        http://myWSDLurl?wsdl
                    </wsdlUrl>
                </wsdlUrls>
                <!-- or using wsdls file directory -->
                    <!-- <wsdlDirectory>src/wsdl</wsdlDirectory> -->
                <!-- which wsdl file -->
                <!-- <wsdlFiles> -->
                    <!-- <wsdlFile>myWSDL.wsdl</wsdlFile> -->
                <!--</wsdlFiles> -->
                <!-- Keep generated files -->
                <keep>true</keep> 
                <!-- Package name --> 
                <packageName>com.organization.name</packageName> 
                <!-- generated source files destination-->
                <sourceDestDir>target/generatedclasses</sourceDestDir>
            </configuration>
        </plugin>
    </plugins>  
</build>  

于 2015-03-06T13:01:35.243 回答
6

即使这是迟到的回应,也可能对某人有所帮助。看起来你已经使用了 pluginManagement。如果您使用 pluginManagement ,它将不会选择插件执行。

应该在

<build>
<plugins>           
        <plugin> 
于 2018-01-26T20:27:53.517 回答
3

尝试将 wsdlLocation 包装在 wsdlUrls

            <wsdlUrls>
                <wsdlLocation>http://url</wsdlLocation>
            </wsdlUrls>
于 2014-12-01T09:14:56.510 回答
3

我看到有些人更喜欢通过 jaxws-maven-plugin 将源代码生成到目标中,并通过 build-helper-maven-plugin 使这些类在源代码中可见。作为这种结构的论据

版本管理系统 (svn/etc.) 总是会注意到更改的源

使用 git 是不正确的。因此,您可以只配置jaxws-maven-plugin将它们放入您的源中,而不是在目标文件夹下。下次构建项目时,git 不会将这些生成的文件标记为已更改。这是只有一个插件的简单解决方案:

      <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>jaxws-maven-plugin</artifactId>
        <version>2.6</version>

    <dependencies>
      <dependency>
        <groupId>org.jvnet.jaxb2_commons</groupId>
        <artifactId>jaxb2-fluent-api</artifactId>
        <version>3.0</version>
      </dependency>
      <dependency>
        <groupId>com.sun.xml.ws</groupId>
        <artifactId>jaxws-tools</artifactId>
        <version>2.3.0</version>
      </dependency>
    </dependencies>

    <executions>
      <execution>
        <goals>
          <goal>wsimport</goal>
        </goals>
        <configuration>
          <packageName>som.path.generated</packageName>
          <xjcArgs>
            <xjcArg>-Xfluent-api</xjcArg>
          </xjcArgs>
          <verbose>true</verbose>
          <keep>true</keep> <!--used by default-->
          <sourceDestDir>${project.build.sourceDirectory}</sourceDestDir>
          <wsdlDirectory>src/main/resources/META-INF/wsdl</wsdlDirectory>
          <wsdlLocation>META-INF/wsdl/soap.wsdl</wsdlLocation>
        </configuration>
      </execution>
    </executions>
  </plugin>

此外(请注意)在此示例中 SOAP 类是使用 Fluent API 生成的,因此您可以像这样创建它们:

A a = new A()
  .withField1(value1)
  .withField2(value2);
于 2018-09-07T11:04:48.223 回答
0

这里的关键是 wsimport 的保留选项。它是使用 wsimport 文档中 About keep 中的元素配置的:

-keep                     keep generated files
于 2015-09-14T17:48:52.170 回答
0

我在从 wsimport 目标生成类时遇到了同样的问题。我没有在 Eclipse Maven Build 中使用 jaxws:wsimport 目标,而是使用无法从 wsdl 文件生成代码的干净编译安装。感谢上面的例子。从 Eclipse ide 运行 jaxws:wsimport 目标,它将工作

于 2018-01-07T08:49:43.047 回答