我正在尝试绑定到在托管在 JBoss 服务器上的测试环境中运行的现有遗留 web 服务,但由于以下异常,Spring 无法创建 bean:
Caused by: javax.xml.ws.WebServiceException: Unable to create JAXBContext
at com.sun.xml.internal.ws.model.AbstractSEIModelImpl.createJAXBContext(AbstractSEIModelImpl.java:153)
at com.sun.xml.internal.ws.model.AbstractSEIModelImpl.postProcess(AbstractSEIModelImpl.java:83)
at com.sun.xml.internal.ws.model.RuntimeModeler.buildRuntimeModel(RuntimeModeler.java:244)
at com.sun.xml.internal.ws.client.WSServiceDelegate.createSEIPortInfo(WSServiceDelegate.java:687)
at com.sun.xml.internal.ws.client.WSServiceDelegate.addSEI(WSServiceDelegate.java:675)
at com.sun.xml.internal.ws.client.WSServiceDelegate.getPort(WSServiceDelegate.java:330)
at com.sun.xml.internal.ws.client.WSServiceDelegate.getPort(WSServiceDelegate.java:313)
at com.sun.xml.internal.ws.client.WSServiceDelegate.getPort(WSServiceDelegate.java:295)
at javax.xml.ws.Service.getPort(Service.java:92)
at org.springframework.remoting.jaxws.JaxWsPortClientInterceptor.getPortStub(JaxWsPortClientInterceptor.java:413)
at org.springframework.remoting.jaxws.JaxWsPortClientInterceptor.prepare(JaxWsPortClientInterceptor.java:337)
at org.springframework.remoting.jaxws.JaxWsPortClientInterceptor.afterPropertiesSet(JaxWsPortClientInterceptor.java:316)
at org.springframework.remoting.jaxws.JaxWsPortProxyFactoryBean.afterPropertiesSet(JaxWsPortProxyFactoryBean.java:42)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1514)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1452)
... 38 more
Caused by: java.security.PrivilegedActionException: com.sun.xml.internal.bind.v2.runtime.IllegalAnnotationsException: 1 counts of IllegalAnnotationExceptions
java.lang.StackTraceElement does not have a no-arg default constructor.
this problem is related to the following location:
at java.lang.StackTraceElement
at public java.lang.StackTraceElement[] java.lang.Throwable.getStackTrace()
at java.lang.Throwable
at java.lang.Exception
at uk.co.example.UserException
at public javax.xml.bind.JAXBElement uk.co.example.ObjectFactory.createUserException(uk.co.example.UserException)
at uk.co.example.ObjectFactory
at java.security.AccessController.doPrivileged(Native Method)
at com.sun.xml.internal.ws.model.AbstractSEIModelImpl.createJAXBContext(AbstractSEIModelImpl.java:140)
我通过 Spring xml 绑定到 web 服务:
<bean id="auth1" class="org.springframework.remoting.jaxws.JaxWsPortProxyFactoryBean">
<property name="serviceInterface" value="uk.co.example.Authentication" />
<property name="wsdlDocumentUrl" value="http://testdomain.co.uk:30001/services/authentication?wsdl" />
<property name="namespaceUri" value="http://example.co.uk/" />
<property name="serviceName" value="AuthenticationWebServiceService" />
<property name="portName" value="AuthenticationPort" />
<property name="maintainSession" value="true" />
</bean>
我的 UserException 只是扩展了 java.lang.Exception:
public class UserException extends Exception
{
}
所以我的 web 服务包含一个声明抛出 UserException 的方法。UserException 扩展了 java.lang.Exception,其中包含对没有无参数构造函数的 StackTraceElement 的引用。因此出现了 JAXB 异常。我从其他一些关于这个问题的帖子中得到了这么多。
我不明白的是:为什么这个特定的 web 服务和这个特定的异常类?当然,我如何纠正这个问题?
我的 web 服务引发了许多其他异常(大多数似乎扩展了 java.lang.Exception)。在同一个 JBoss 服务器中运行的另一个 web 服务(它不会抛出 UserException,但会抛出其他定制的 Exception 子类)工作正常。2 组不同的 Web 服务具有不同的客户端 jar。
我只是创建了一个 Eclipse Maven 项目,引入了 Spring 测试和 web jar (v3.1.0)、junit 和 log4j。2 个客户端 jars(作为旧版本的一部分预先存在)也在类路径中。我创建了一个 Junit,它将代理 bean 自动装配为 Authentication 接口并在其上调用 authenticateUser() 方法。
因为它是遗留代码,所以我无法更改正在运行的 Web 服务或生成的客户端 jar 中的任何内容。
有什么建议么?
在谈到 web 服务以及我们的遗留代码是如何构建和部署时,我承认我有点新手,所以不要害怕问任何你认为可能太明显的问题!