我想在我的网络应用程序中使用org.springframework.ws.soap.security.wss4j.Wss4jSecurityInterceptor
。在pom.xml
我添加了
<dependency>
<groupId>org.springframework.ws</groupId>
<artifactId>spring-ws-core</artifactId>
<version>2.2.1.RELEASE</version>
</dependency>
依赖属性。但在春季配置中它表示&#39; org.springframework.ws.soap.security.wss4j.Wss4jSecurityInterceptor&#39;未找到。有什么想法吗?
答案 0 :(得分:2)
在http://www.findjar.com/寻找org.springframework.ws.soap.security.wss4j.Wss4jSecurityInterceptor我看到它出现在这个maven位置:http://mirrors.ibiblio.org/pub/mirrors/maven2/org/springframework/ws/spring-ws-security/1.5.6/spring-ws-security-1.5.6.jar
应该是
<groupId>org.springframework.ws</groupId>
<artifactId>spring-ws-security</artifactId>
<version>1.5.6</version>
可能还有其他版本,但这是一个完全不同的工件。可以肯定的是,只要查看丢失的类是否实际存在于您希望它存在的jar中。