RESTful风格是一种URL路径的设计风格。在RESTful风格的URL路径中,网络上的任意数据都可以看成一个资源,它可以是一段文本、一张图片,也可以是一个Java对象。而每个资源都会占据一个网络路径,无论对该资源进行增删改查,访问的路径是一致的。
传统URL:
那么如何区分对该资源是哪一种操作?通过请求方式不同,判断进行的是什么操作。 之前我们学过两种请求方式,GET请求和POST请求,而访问RESTful风格的URL一共有四种请求方式:
RESTful风格URL:
RESTful风格的优点: 结构清晰、符合标准、易于理解、扩展方便。
默认情况下浏览器是无法发送DELETE请求和PUT请求的,我们可以使用Postman工具发送这些请求。这里我已经把该工具上传到我的资源里面去了,有需要的读者可以去下载:
点击new-collection创建请求集合
添加请求
注:那里是点击发送,右边的才是点击保存
保存请求到集合,以后可以随时发送该请求
测试:
添加描述
OK,这里的name加了@ModelAttribute注解,因此是从model中获取的 ,并不是从请求路径上面获取的。
作用:在RESTful风格的URL中获取占位符的值 位置:方法参数前 属性: value:获取哪个占位符的值作为参数值,如果占位符和参数名相同,可以省略该属性。
package com.example.controller;
import com.example.domain.Student;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.*;
import javax.servlet.http.HttpServletRequest;
@Controller
@RequestMapping("/student")
// 模拟学生的增删改查控制器
public class StudentController {
// 路径的{id}表示占位符,最后会封装到方法的参数中使用
// 删除学生
@RequestMapping(value = "/{id}",method = RequestMethod.DELETE)
public String deleteStudent(@PathVariable("id") int id, HttpServletRequest request){
System.out.println("删除id为"+id+"的学生");
String str = "删除id为"+id+"的学生";
request.setAttribute("delete",str);
return "student";
}
// 如果占位符和参数名相同,可以省略@PathVariable的value属性
// 根据id查询学生
@RequestMapping(value = "/{id}",method = RequestMethod.GET)
public String findStudentById(@PathVariable int id,HttpServletRequest request){
request.setAttribute("get","根据id查询学生:"+id);
System.out.println("根据id查询学生\t"+id);
return "student";
}
// 新增学生
@RequestMapping(value = "/{id}",method = RequestMethod.POST)
public String addStudent(@PathVariable int id, Student student, HttpServletRequest request){
request.setAttribute("add",student.toString());
System.out.println("新增学生:"+student+"\t"+id);
return "student";
}
// 修改学生
@RequestMapping(value = "/{id}",method = RequestMethod.PUT)
public String updateStudent(@PathVariable int id,Student student,HttpServletRequest request){
System.out.println("修改学生\t"+id+"\t"+student);
request.setAttribute("update","修改学生:"+student);
return "student";
}
}
JSP页面:
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>student</title>
</head>
<body>
<h1>Add:${requestScope.add}</h1>
<h1>Delete:${requestScope.delete}</h1>
<h1>Update:${requestScope.update}</h1>
<h1>Get:${requestScope.get}</h1>
</body>
</html>
访问方式: 新增学生:POST http://localhost:8080/student/1?name=LYL&sex=男
修改学生:PUT http://localhost:8080/student/1?name=LYL&sex=女
删除学生:DELETE http://localhost:8080/student/1
查询学生:GET http://localhost:8080/student/1
OK,可以看到都是页面都是随着不同的请求方式,出来也页面也不一样。 看一下控制台是否打印对应的日志:
OK,也都是成功显示的了。
为了简化请求方式@RequestMapping的写法,就产生了了这四个注解。写法如下:
@Controller
@RequestMapping("/student")
// 模拟学生的增删改查控制器
public class StudentController {
// 路径的{id}表示占位符,最后会封装到方法的参数中使用
// 删除学生
//@RequestMapping(value = "/{id}",method = RequestMethod.DELETE)
@DeleteMapping("/{id}")
public String deleteStudent(@PathVariable("id") int id, HttpServletRequest request){
System.out.println("删除id为"+id+"的学生");
String str = "删除id为"+id+"的学生";
request.setAttribute("delete",str);
return "student";
}
// 如果占位符和参数名相同,可以省略@PathVariable的value属性
// 根据id查询学生
//@RequestMapping(value = "/{id}",method = RequestMethod.GET)
@GetMapping("/{id}")
public String findStudentById(@PathVariable int id,HttpServletRequest request){
request.setAttribute("get","根据id查询学生:"+id);
System.out.println("根据id查询学生\t"+id);
return "student";
}
// 新增学生
//@RequestMapping(value = "/{id}",method = RequestMethod.POST)
@PostMapping("/{id}")
public String addStudent(@PathVariable int id, Student student, HttpServletRequest request){
request.setAttribute("add",student.toString());
System.out.println("新增学生:"+student+"\t"+id);
return "student";
}
// 修改学生
//@RequestMapping(value = "/{id}",method = RequestMethod.PUT)
@PutMapping("/{id}")
public String updateStudent(@PathVariable int id,Student student,HttpServletRequest request){
System.out.println("修改学生\t"+id+"\t"+student);
request.setAttribute("update","修改学生:"+student);
return "student";
}
}
由于浏览器form表单只支持GET与POST请求,而DELETE、PUT请求并不支持。SpringMVC有一个过滤器,可以将浏览器的POST请求改为指定的请求方式,发送给的控制器方法。用法如下:
<!-- 请求方式过滤器 -->
<filter>
<filter-name>httpMethodFilter</filter-name>
<filter-class>org.springframework.web.filter.HiddenHttpMethodFilter</filter-class>
</filter>
<filter-mapping>
<filter-name>httpMethodFilter</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
package com.example.controller;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.DeleteMapping;
import org.springframework.web.bind.annotation.PutMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import javax.servlet.http.HttpServletRequest;
@Controller
@RequestMapping("/c7")
public class MyController7 {
@DeleteMapping("/delete")
public String testDelete(HttpServletRequest request){
System.out.println("删除方法");
request.setAttribute("delete","删除方法");
return "student";
}
@PutMapping("/put")
public String testPut(HttpServletRequest request){
request.setAttribute("update","修改方法");
System.out.println("修改方法");
return "student";
}
}
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>DELETE、PUT提交</title>
</head>
<body>
<!-- 删除 -->
<%-- 提交DELETE、PUT请求,表单必须提交方式为post--%>
<%-- 表单中有一个隐藏域,name值为_method,value值为提交方式--%>
<form action="/c7/delete" method="post">
<input type="hidden" name="_method" value="DELETE">
<input type="submit" value="删除">
</form>
<!-- 修改 -->
<form action="/c7/put" method="post">
<input type="hidden" name="_method" value="PUT">
<input type="submit" value="修改">
</form>
</body>
</html>
OK,我们去访问上面那个jsp:http://localhost:8080/delete-put.jsp
OK,我们点击删除时:
点击修改时:
可以看得到都是成功请求的了。
原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。
如有侵权,请联系 cloudcommunity@tencent.com 删除。
原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。
如有侵权,请联系 cloudcommunity@tencent.com 删除。