WSDL から生成された CXF クライアントを含む Thorntail v2.3.0 マイクロサービスがあります。Maven 3.5.3 を使用して、コマンドラインからサービスを開始する方法は 2 つあります。
mvn clean install thorntail:run
または、JVM 1.8.0 で直接:
mvn clean install
java -jar target/myservice-thorntail.jar
両方の方法を使用して、プロセスが同じ方法で実行されることを期待しています。ただし、最初の方法を使用すると、CXF クライアントを呼び出すと以下のエラーが発生します。Javaコマンドで実行するとエラーにはなりません。
WARN [org.apache.cxf.ws.security.policy.WSSecurityPolicyLoader] (Thread-79) Could not load
or register WS-SecurityPolicy related classes. Please check that (the correct version of)
Apache WSS4J is on the classpath: null
WARN [org.apache.cxf.ws.security.policy.WSSecurityPolicyLoader] (Thread-79) Could not load
or register WS-SecurityPolicy related classes. Please check that (the correct version of)
Apache WSS4J is on the classpath: Could not initialize class org.apache.wss4j.stax.setup.WSSec
WARN [org.apache.cxf.ws.policy.AssertionBuilderRegistryImpl] (Thread-79) No assertion builder for type
{http://schemas.xmlsoap.org/ws/2005/07/securitypolicy}HttpToken registered.
ERROR [stderr] (Thread-79) Exception in thread "Thread-79" javax.xml.ws.soap.SOAPFaultException:
None of the policy alternatives can be satisfied.
警告で示唆されているように、WSS4J に依存関係を追加しようとしましたが、効果はありませんでした。私のPOMには次の依存関係が含まれています:
<dependency>
<groupId>apache-lang</groupId>
<artifactId>commons-lang</artifactId>
<version>2.0</version>
<type>jar</type>
</dependency>
<dependency>
<groupId>javax</groupId>
<artifactId>javaee-api</artifactId>
<version>7.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.annotation</groupId>
<artifactId>javax.annotation-api</artifactId>
<version>1.2</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.datatype</groupId>
<artifactId>jackson-datatype-joda</artifactId>
<version>2.4.1</version>
</dependency>
<dependency>
<groupId>io.thorntail</groupId>
<artifactId>jpa</artifactId>
</dependency>
<dependency>
<groupId>io.thorntail</groupId>
<artifactId>ejb</artifactId>
</dependency>
<dependency>
<groupId>io.thorntail</groupId>
<artifactId>datasources</artifactId>
</dependency>
<dependency>
<groupId>io.thorntail</groupId>
<artifactId>webservices</artifactId>
</dependency>
<dependency>
<groupId>io.thorntail</groupId>
<artifactId>jaxrs-jaxb</artifactId>
</dependency>
<dependency>
<groupId>io.thorntail</groupId>
<artifactId>cdi</artifactId>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-core</artifactId>
<version>5.3.1.Final</version>
<exclusions>
<exclusion>
<groupId>dom4j</groupId>
<artifactId>dom4j</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-c3p0</artifactId>
<version>5.2.12.Final</version>
</dependency>
私の仮定は依存関係に関連していると思いますが、どこから解決策を探し始めればよいかわかりません。必要に応じて構成値をオーバーライドできるため、最初のコマンドで実行することをお勧めします。
この問題の原因を追跡して診断するにはどうすればよいですか?