Web Service进阶(六)SOAPBinding绑定方式异常 is not found. Have you run APT to generate them

当在类中填充相应方法时,提示如下错误:

Web Service进阶(六)SOAPBinding绑定方式异常 is not found. Have you run APT to generate them_第1张图片

出现以上错误的原因就是在注解中没有添加@SOAPBinding(style=SOAPBinding.Style.RPC)这句话。估计也与JDK的版本相关,这方面的知识有时间时再深究。

Web Service进阶(六)SOAPBinding绑定方式异常 is not found. Have you run APT to generate them_第2张图片

出现以上错误的原因是源代码中存在throws Exception

@WebMethod

public int add(String userStr) throws Exception{

return 1;

}

解决办法就是将throws Exception删除,或者利用消息处理机制解决


你可能感兴趣的:(jdk,exception,Web,异常,源代码,service)