在 pom.xml 中使用 Apache CXF Codegen 插件时出错。尝试更新 maven 时执行标记中出错。如何解决这个问题?
Posted
技术标签:
【中文标题】在 pom.xml 中使用 Apache CXF Codegen 插件时出错。尝试更新 maven 时执行标记中出错。如何解决这个问题?【英文标题】:Error while using Apache CXF Codegen Plugin in pom.xml.Error in execution tag while trying to update the maven. How to resolve this? 【发布时间】:2021-04-24 09:40:55 【问题描述】: <build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-codegen-plugin</artifactId>
<version>3.3.0</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/CustomerOrders.wsdl</wsdl>
<wsdlLocation>classpath:CustomerOrders.wsdl</wsdlLocation>
</wsdlOption>
</wsdlOptions>
</configuration>
<goals>
<goal>wsdl2java</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
我正在尝试使用 Apache CXF-Codegen 插件从 WSDL 文件生成存根。 尝试更新 maven 时执行标记出错。尝试将插件包含在 pluginManagement 标记中,但没有任何结果。
【问题讨论】:
【参考方案1】:去掉wsdlLocation
,配置wsdl
就够了。
另请参阅https://cxf.apache.org/docs/maven-cxf-codegen-plugin-wsdl-to-java.html 或来源https://github.com/apache/cxf/blob/master/maven-plugins/codegen-plugin/src/main/java/org/apache/cxf/maven_plugin/wsdl2java/WsdlOption.java
【讨论】:
以上是关于在 pom.xml 中使用 Apache CXF Codegen 插件时出错。尝试更新 maven 时执行标记中出错。如何解决这个问题?的主要内容,如果未能解决你的问题,请参考以下文章