首页 > 代码库 > CXF发布Rest服务

CXF发布Rest服务

1.rest 和soap区别

  rest简单易用,效率高,soap成熟度比较高,安全性高

2.什么是rest?

  2.1rest精确定位网上资源(接口,方法,参数)

    非rest: http://ip:port/queryUser.action?username="zhangsan"&id=001

     rest: http://ip:port/user/student/query/001

  2.2支持xml,json

  2.3支持get,post

CXF发布Rest服务