我使用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中遇到了这些错误:
无法找到符号 符号:构造函数 服务(java.net.URL中,javax.xml.namespace.QName中,javax.xml.ws.WebServiceFeature [])
我已经检查了JAX-WS API 2.2,它实际上有这个构造函数......我该怎么办?
答案 0 :(得分:7)
JAX-WS是JDK的一部分。要使用较新的版本,必须将其放在endorsed目录中。要使用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>