当我从 Spring 项目中调用其中一个 WSDL 操作时,出现以下异常-
com.sun.istack.internal.SAXException2: unable to marshal type "com.pkg.wsdl.ABC" as an element because it is missing an @XmlRootElement annotation
我在 pom.xml 中使用以下内容从 WSDL(已被许多客户使用)生成 java 对象,作为 spring 项目的一部分-
<groupId>org.jvnet.jaxb2.maven2</groupId>
<artifactId>maven-jaxb2-plugin</artifactId>
<version>0.13.1</version>
查看类似的问题解决方案,我将代码更改为使用 JAXBElement 但仍然出现相同的错误 -
ABC vabc = new ABC();
vabc.set(..) // populate vabc object
ObjectFactory of = new ObjectFactory();
JAXBElement<ABC> jabc = of.createABC(vabc);
ABC oabc = jabc .getValue();
马歇尔代码 -
Jaxb2Marshaller marshaller = new Jaxb2Marshaller();
marshaller.setContextPath("com.pkg.wsdl");
并调用后端 Web 服务 -
ABCResp response = (ABCResp) getWebServiceTemplate()
.marshalSendAndReceive("http://host:port/svcname",oabc);