restful只是一种风格 restful风格采用http传输协议,RestFul对于http的利用分为以下两种:
1.资源定位 使用URL 更准确的去定位一个互联网资源
传统的URL:htt://localhost:8989/ems/queryUser?id=12
restful的URL: http://localhost:8989/ems/user/12
2.资源操作
http请求GET POST PUT DELETE 分别对应着数据库的select update insert delete
使用restful风格的webservice 也就是cxf发布的webservice的地址是restful风格的
使用restful风格发布的webservice不采用soap协议 ,轻量级 速度快,采用http传输协议。
3.cxf之restful实现
4.cxf之spring发布restful
5.修改restful的json转换
6.使用httpclient调用restful