gpt4 book ai didi

java - 如何在 pom.xml 中为 wsdl2java 指定前端?

转载 作者:塔克拉玛干 更新时间:2023-11-03 04:06:07 24 4
gpt4 key购买 nike

我找到了 this great tip关于将 -fe jaxws21 添加到 wsdl2java 命令以使其生成 jaxws 2.1 兼容代码而不是 2.2,但是 Maven 的 pom.xml 似乎不喜欢这个添加像这样:

            <goals>
<goal>wsdl2java -fe jaxws21</goal>
</goals>

为 pom.xml 中使用的 wsdl2java 指定前端的正确方法是什么?

最佳答案

如果您使用的是 cxf-codegen-plugin,您可以在 extraargs 元素中添加参数:

<executions>
<execution>
<configuration>
<wsdlOptions>
<wsdlOption>
<wsdl>...</wsdl>
<extraargs>
<extraarg>-fe</extraarg>
<extraarg>jaxws21</extraarg>
</extraargs>
</wsdlOption>
</wsdlOptions>
</configuration>
<goals>
<goal>wsdl2java</goal>
</goals>
</execution>
</executions>

来源:http://cxf.apache.org/docs/maven-cxf-codegen-plugin-wsdl-to-java.html

关于java - 如何在 pom.xml 中为 wsdl2java 指定前端?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14104523/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com