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 依存関係を見つけることができません。
誰でもこれに関する良いリンクを共有できますか?
これはどうですか?
グループ ID: 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>
ありがとう!