gpt4 book ai didi

maven - 我如何首先为 apache cxf wsdl 创建一个 maven 项目

转载 作者:行者123 更新时间:2023-12-03 17:51:02 29 4
gpt4 key购买 nike

我想使用 wsdl 从头开始​​创建一个 apache cxf maven 项目。我需要使用 wsdl2java。我首先找不到 wsdl 的原型(prototype)。当我尝试

mvn原型(prototype):生成-Dfilter=org.apache.cxf.archetype:

我只看到这些。首先没有 wsdl 的原型(prototype)吗?如果不能,有人可以推荐最有效的方法吗?谢谢

选择原型(prototype):
1:远程-> org.apache.cxf.archetype:cxf-jaxrs-service(简单的CXF JAX-RS webap
p 服务使用 Spring 配置)
2:远程-> org.apache.cxf.archetype:cxf-jaxws-javafirst(为
从 Java 代码开始开发 Web 服务)

最佳答案

我总是为生成的 wsdl 创建子模块。 Eclipse 的路径有问题——而且这个模块不需要编译很多次。

对于客户:

<properties>
<wsdl.dir>${basedir}/src/main/resources/axis2</wsdl.dir>
<generateServerSide>false</generateServerSide>
<sourceRoot>${basedir}/target/generated/src/main/java</sourceRoot>
</properties>

<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-codegen-plugin</artifactId>
<version>${cxf.version}</version><!--$NO-MVN-MAN-VER$ -->
<executions>
<execution>
<id>generate-sources</id>
<phase>generate-sources</phase>
<configuration>
<sourceRoot>${sourceRoot}</sourceRoot>
<defaultOptions>
<bindingFiles>
<bindingFile>${wsdl.dir}/binding.xml</bindingFile>
</bindingFiles>
</defaultOptions>
<wsdlOptions>
<wsdlOption>
<wsdl>${wsdl.dir}/first.wsdl</wsdl>
<packagenames>
<packagename>com.company.gen.first</packagename>
</packagenames>
<extraargs>
<extraarg>-impl</extraarg>
<extraarg>-autoNameResolution</extraarg>
<extraarg>-wsdlLocation</extraarg>
<wsdlurl />
</extraargs>
</wsdlOption>
</wsdlOptions>
</configuration>
<goals>
<goal>wsdl2java</goal>
</goals>
</execution>
</executions>
</plugin>


<plugin> <!-- for idea/eclipse -->
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<executions>
<execution>
<id>add-source</id>
<phase>generate-sources</phase>
<goals>
<goal>add-source</goal>
</goals>
<configuration>
<sources>
<source>${sourceRoot}</source>
</sources>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
</build>

对于服务器:
            <execution>
<id>first</id>
<goals>
<goal>wsdl2code</goal>
</goals>
<configuration>
<generateServerSide>${generateServerSide}</generateServerSide>
<generateAllClasses>${generateServerSide}</generateAllClasses>
<generateServicesXml>${generateServerSide}</generateServicesXml>
<generateServerSideInterface>${generateServerSide}</generateServerSideInterface>
<wsdlFile>${wsdl.dir}/first.wsdl</wsdlFile>
<packageName>com.company.gen.first</packageName>
<unpackClasses>true</unpackClasses>
<syncMode>sync</syncMode>
<namespaceURIs>
<namespaceURI>
<uri>http://uri.company.com</uri>
<packageName>com.company.gen.first</packageName>
</namespaceURI>
</namespaceURIs>

</configuration>
</execution>

关于maven - 我如何首先为 apache cxf wsdl 创建一个 maven 项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21323677/

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