springmvc集成cxf异常:Error creating bean with name ✀org.apache.cxf.jaxws.EndpointImpl--772087570✀

2024-12-21 09:49:34
推荐回答(3个)
回答1:

貌似jar包版本不对

回答2:

需要注意获取的类,spring使用注解的话默认使用 ‘类名第一个字母小写’。写对了就没问题了。
还有:
配置文件里:jaxws:endpoint implementor="#wZWebServiceImpl",这里写实现。
同时,spring注解也声明一下。
@Service("wZWebServiceImpl")
public class WZWebServiceImpl implements WZWebService{...}

回答3:

问题解决了吗