REST简介
REST(Representational State Transfer),表现形式状态转换
传统风格资源描述形式
http://localhost/user/getById?id=1
http://localhost/user/saveUser
REST风格描述形式
http://localhost/user/1
http://localhost/user
优点:
隐藏资源的访问行为,无法通过地址得知对资源是何种操作
书写简化
按照REST风格访问资源时使用行为动作区分对资源进行了何种操作
http://localhost/users 查询全部用户信息 GET(查询)
http://localhost/users/1 查询指定用户信息 GET(查询)
http://localhost/users 添加用户信息 POST(新增/保存)
http://localhost/users 修改用户信息 PUT(修改/更新)
http://localhost/users/1 删除用户信息 DELETE(删除)
注:
上述行为是约定方式,约定不是规范,可以打破,所以称REST风格,而不是REST规范
描述模块的名称通常使用复数,也就是加s的格式描述,表示此类资源,而非单个资源,例如:users、books...
RESTful
根据REST风格对资源进行访问称为RESTful
直接看映射路径处的代码如下(get查询)
//http://localhost/user/100 =>根据id查询
@GetMapping("/user/{id}/{xxx}")
public String findUserById(
@PathVariable("id") int id,
@PathVariable("xxx") String yyy
){
System.out.println("id==>"+id);
System.out.println("yyy==>"+yyy);
return "/index.jsp";
}