`

com.sun.xml.bind.v2.runtime.IllegalAnnotationsException: 2 counts of IllegalAnno

 
阅读更多

com.sun.xml.bind.v2.runtime.IllegalAnnotationsException: 2 counts of IllegalAnnotationExceptions

Two classes have the same XML type name..................

我的解决方案:服务端接口所在包的包名与客户端接口(通过jdk自带的wsimport解析wsdl生成的)所在包的包名需要保持一致

在解决过程当中,在网上见到了一些其他的解决方案,也贴在这里,备用:

方案1:将服务端的services接口返回的Map类型的值,改成HashMap.

结论:在做webServices复杂类型值传递时,返回值的类型不要用接口类型。例如(List应该改为ArrayList,Map改为HashMap等)

方案2:WebService在发布的时候:webservice里面得每个方法都生成一个类,生成的类名为methodName + "Response",所以就回导致生成的类和原来的类有两个相同的xml type

方法名是verify,返回值是VerifyResponse,而webSwevice也会为我的方法生成一个类verifyResponse,这就冲突了。

解决方案常用有两个:

1.修改返回对象名称,不再使用VerifyResponse类名

2.使用@WebMethod指定生成的类名

 

@WebServicepublic interface RealNameVerifyService {
    /**
     * 实名认证处理...
     * @param request
     * @return
     */
    @WebMethod(operationName="wsVerify")
    VerifyResponse verify(VerifyRequest request) throws BusinessException;
}

 

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics