webservice之RestFul风格

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实现

webservice之RestFul风格_第1张图片
Paste_Image.png
webservice之RestFul风格_第2张图片
Paste_Image.png

4.cxf之spring发布restful

webservice之RestFul风格_第3张图片
Paste_Image.png
webservice之RestFul风格_第4张图片
Paste_Image.png

5.修改restful的json转换

webservice之RestFul风格_第5张图片
Paste_Image.png

6.使用httpclient调用restful

webservice之RestFul风格_第6张图片
Paste_Image.png

你可能感兴趣的:(webservice之RestFul风格)