У меня есть микросервис Thorntail v2.3.0, который содержит клиент CXF, сгенерированный из WSDL.У меня есть два способа запуска службы из командной строки: либо с Maven 3.5.3:
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>
Я предполагаю, что это связано с зависимостями, но я не уверен, с чего начать поиск решения.Я бы предпочел выполнить с первой командой, поскольку при необходимости я могу переопределить значения конфигурации.
Как отследить и диагностировать причину этой проблемы?