Restful简介和springMVC使用restful案例

Restful简介和案例

  • 一、Restful简介
    • 1、Restful简介
    • 2、Restful的实现
    • 3、Restful的优点
  • 二、RESTful案例
    • 1、浏览器如何发送put和delete请求
    • 2、实现案例


一、Restful简介

1、Restful简介

RestFul: 是一种以网络为基础构架一种架构风格 一个架构符合Rest设计原则和约束称这个架构为RestFul。

Rest 词: 并没有 更新技术 组件 服务 让我们web请求能够利用web中标准 和 能力 更好描述架构

REST本身并没有创造新的技术、组件或服务,而隐藏在RESTful背后的理念就是使用Web的现有特征和能力, 更好地使用现有Web标准中的一些准则和约束。虽然REST本身受Web技术的影响很深, 但是理论上REST架构风格并不是绑定在HTTP上,只不过目前HTTP是唯一与REST相关的实例。

2、Restful的实现

  • 具体说,就是 HTTP 协议里面,四个表示操作方式的动词:GET、POST、PUT、DELETE。它们分别对应四种基本操作:GET 用来获取资源,POST 用来新建资源,PUT 用来更新资源,DELETE 用来删除资源。

  • REST 风格提倡 URL 地址使用统一的风格设计,从前到后各个单词使用斜杠分开,不使用问号键值对方式携带请求参数,而是将要发送给服务器的数据作为 URL 地址的一部分,以保证整体风格的一致性。

操作 传统方式 REST风格
查询操作 getUserById?id=1 user/1–>get请求方式
保存操作 saveUser user–>post请求方式
删除操作 deleteUser?id=1 user/1–>delete请求方式
修改操作 updateUser user–>put请求方式

3、Restful的优点

  1. 轻量,直接基于http,不再需要任何别的诸如消息协议。get/post/put/delete为CRUD操作

  2. 面向资源,一目了然,具有自解释性。

  3. 数据描述简单,一般以xml,json做数据交换。

  4. 无状态,在调用一个接口(访问、操作资源)的时候,可以不用考虑上下文,不用考虑当前状态,极大的降低了复杂度。

  5. 简单、低耦合


二、RESTful案例

1、浏览器如何发送put和delete请求

由于浏览器只支持发送get和post方式的请求,那么该如何发送put和delete请求?
SpringMVC 提供了 HiddenHttpMethodFilter 帮助我们将 POST 请求转换为 DELETE 或 PUT 请求

HiddenHttpMethodFilter 处理put和delete请求的条件:

1.当前请求的请求方式必须为post

2.当前请求必须传输请求参数_method

实现方法:

在web.xml中注册HiddenHttpMethodFilter

<filter>
    <filter-name>HiddenHttpMethodFilterfilter-name>
    <filter-class>org.springframework.web.filter.HiddenHttpMethodFilterfilter-class>
filter>
<filter-mapping>
    <filter-name>HiddenHttpMethodFilterfilter-name>
    <url-pattern>/*url-pattern>
filter-mapping>

注意:在web.xml中注册时,必须先注册CharacterEncodingFilter,再注册HiddenHttpMethodFilter

原因:在 CharacterEncodingFilter 中通过request.setCharacterEncoding(encoding) 方法设置字符集的request.setCharacterEncoding(encoding) 方法要求前面不能有任何获取请求参数的操作

2、实现案例

实现的功能和传统 CRUD 一样,实现对员工信息的增删改查。

功能 URL 地址 请求方式
查询全部数据√ /employee GET
删除√ /employee/2 DELETE
执行保存√ /employee POST
执行更新√ /employee PUT

查询所有(记得注意指定请求方式):

@RequestMapping(value = "/employee", method = RequestMethod.GET)
public String getEmployeeList(Model model){
    Collection<Employee> employeeList = employeeDao.getAll();
    model.addAttribute("employeeList", employeeList);
    return "employee_list";
}

删除信息:

@RequestMapping(value = "/employee/{id}", method = RequestMethod.DELETE)
public String deleteEmployee(@PathVariable("id") Integer id){
    employeeDao.delete(id);
    return "redirect:/employee";
}

添加用户:

@RequestMapping(value = "/employee", method = RequestMethod.POST)
public String addEmployee(Employee employee){
    employeeDao.save(employee);
    return "redirect:/employee";
}

修改用户:

@RequestMapping(value = "/employee", method = RequestMethod.PUT)
public String updateEmployee(Employee employee){
    employeeDao.save(employee);
    return "redirect:/employee";
}

注: 这里的注解@RequestMapping,也可以换成@RequestMapping的派生注解:
处理get请求的映射–>@GetMapping
处理post请求的映射–>@PostMapping
处理put请求的映射–>@PutMapping
处理delete请求的映射–>@DeleteMapping`

你可能感兴趣的:(SpringMVC,restful,java,后端)