资 源 简 介
开发基于CXF的 RESTful WebService1.创建Web项目Restful并导入CXF的jar2.在Web.xml中配置 CXFServlet 3.创建实体类 Person 4.定义 PersonService 接口 5.提供实现类 PersonServiceImpl 6.提供CXF 的配置文件 cxf-servlet.xml 7.访问CXFServlet:http://localhost/Restful/ws http://localhost/Restful/ws/p/getAll(方法名的注解Path) http://localhost/Restful/ws/p/findById/{id}(方法名的注解Path + 注解参数名)8.通过 URLConnection 访问WebService服务: