Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我用谷歌搜索时,我发现 JAX-WS 实现是随 JDK 1.6 rt.jar 一起提供的。
但我想在 JDK 1.5 中使用 JAX-WS CXF 实现。
我无法为此找到正确的 Maven 依赖项。
任何人都可以分享有关此的任何好的链接。
那这个呢?
GroupId:com.sun.xml.ws ArtifactId:jaxws-rt 版本:2.1.3
资源
请对我们的 POM 文件使用以下依赖项,我希望它就足够了。
<dependency> <groupId>org.apache.cxf</groupId> <artifactId>cxf-bundle</artifactId> <version>2.7.2</version> </dependency>
谢谢!