2

Wss4jSecurityInterceptorWeb サービスを署名で保護するために、spring-ws-security を使用したいと考えています。しかし、このシステムを動作不能にする依存関係の競合があります。spring-ws-security:2.1.2.RELEASEも動作しないようです。

spring-ws-security : 2.1.3.RELEASE [compile]
 - wss4j : 1.6.5                   [compile]
   - xmlsec : 1.5.1                [compile]
   - opensaml : 2.5.1-1            [compile]
     - openws : 1.4.2-1            [compile]
       - xmltooling : 1.3.2-1      [compile]
         - xmlsec : 1.4.4          [compile] (omitted for conflict with 1.5.1)

この問題を解決する方法はありますか?

よろしくお願いします。

4

2 に答える 2

5

問題は、同じ依存関係を新しいバージョンに既に含めていることです。この行の何かがそれを解決すると思います。spring-ws-security 依存関係宣言に追加します。

<exclusions>
     <exclusion>
          <groupId>org.apache.santuario</groupId>
          <artifactId>xmlsec</artifactId>
     </exclusion>
</exclusions>
于 2013-08-07T06:11:35.833 に答える