gpt4 book ai didi

jax-ws - Maven 构建中未加载 jaxws-api 2.2

转载 作者:行者123 更新时间:2023-12-04 23:56:28 24 4
gpt4 key购买 nike

我已经使用 Apache CXF 工具 wsdl2java 生成了 Java 代码。在我的服务的评论中,它说我应该认可 Jaxws API 2.2,但不知道这意味着什么。在我的 Maven POM 中,我有这个:

<dependency>
<groupId>javax.xml.ws</groupId>
<artifactId>jaxws-api</artifactId>
<version>2.2</version>
</dependency>

在构建时,我在 Maven 中收到这些错误:

cannot find symbol symbol : constructor Service(java.net.URL,javax.xml.namespace.QName,javax.xml.ws.WebServiceFeature[])



我已经检查了 JAX-WS API 2.2,它实际上有这个构造函数......我该怎么办?

最佳答案

JAX-WS 是 JDK 的一部分。要使用较新的版本,您必须将其放在已背书的目录中。要使用 Maven 做到这一点,您必须使用 maven-compiler-plugin 对其进行配置。

This page有血腥的细节。

关键片段是:

   <!-- Don't forget to use endorsed with JAX-WS 2.2 on Java 6 !! -->
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.6</source>
<target>1.6</target>
<compilerArguments>
<endorseddirs>${project.build.directory}/endorsed</endorseddirs>
</compilerArguments>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.3</version>
<executions>
<execution>
<phase>validate</phase>
<goals>
<goal>copy</goal>
</goals>
<configuration>
<outputDirectory>${project.build.directory}/endorsed</outputDirectory>
<silent>true</silent>
<artifactItems>
<artifactItem>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>2.2.4</version>
<type>jar</type>
</artifactItem>
<artifactItem>
<groupId>javax.xml.ws</groupId>
<artifactId>jaxws-api</artifactId>
<version>2.2.8</version>
<type>jar</type>
</artifactItem>
</artifactItems>
</configuration>
</execution>
</executions>
</plugin>

关于jax-ws - Maven 构建中未加载 jaxws-api 2.2,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15722399/

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