利用CXF框架开发webservice
1. web.xml文件中添加cxf的servlet
2. 定义接口
@WebService(targetNamespace="http://UserInfo.ws.com",name="UserInfoWebServiceImpl",
}
3.实现接口
public class UserInfoWebServiceImpl implements UserInfoWebService {
}
4.在applicationContext.xml文件中配置webservice接口
5.启动应用
访问webservice
这是在web.xml文件中配置的
开发客户端代码
1. 利用wsdl2java生成客户端的代码
在生成的文件夹中可能会有很多java文件,但我们只需要接口的实现类和相应的实体类文件,将接口的实现类和实体类放在相应的包中
2.在applicationContext文件中配置webservice接口
serviceClass值是在客户端程序中的位置
3. 在程序中调用webservice接口