wsdl2java 目标不是生成客户端 类
wsdl2java goal is not generating client classes
我尝试在 pom.xml 文件中构建。
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.5.1</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-codegen-plugin</artifactId>
<version>3.1.6</version>
<executions>
<execution>
<id>generate-sources</id>
<phase>generate-sources</phase>
<configuration>
<sourceRoot>${project.build.directory}/generated/cxf</sourceRoot>
<wsdlOptions>
<wsdlOption>
<wsdl>${basedir}/src/main/resources/wsdl/abc.wsdl</wsdl>
</wsdlOption>
</wsdlOptions>
</configuration>
<goals>
<goal>wsdl2java</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
</build>
我正在使用日食。尝试右键单击项目->运行 as->maven generate sources 但它没有为我生成客户端 类。事实上,它甚至没有创建 generated/cxf 文件夹。
最好的做法是使用命令行来运行 maven 插件。 运行 一个终端,只需使用
构建您的项目
mvn clean install
它应该会生成您的客户 类。
您的插件位于 pom 中放错位置的部分:如果您希望将它们应用到包含项目,它们应该在项目 > 构建 > 插件中。
我尝试在 pom.xml 文件中构建。
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.5.1</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-codegen-plugin</artifactId>
<version>3.1.6</version>
<executions>
<execution>
<id>generate-sources</id>
<phase>generate-sources</phase>
<configuration>
<sourceRoot>${project.build.directory}/generated/cxf</sourceRoot>
<wsdlOptions>
<wsdlOption>
<wsdl>${basedir}/src/main/resources/wsdl/abc.wsdl</wsdl>
</wsdlOption>
</wsdlOptions>
</configuration>
<goals>
<goal>wsdl2java</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
</build>
我正在使用日食。尝试右键单击项目->运行 as->maven generate sources 但它没有为我生成客户端 类。事实上,它甚至没有创建 generated/cxf 文件夹。
最好的做法是使用命令行来运行 maven 插件。 运行 一个终端,只需使用
构建您的项目mvn clean install
它应该会生成您的客户 类。
您的插件位于 pom 中放错位置的部分:如果您希望将它们应用到包含项目,它们应该在项目 > 构建 > 插件中。