三、@PostMapping、@GetMapping、@PutMapping、@DeleteMapping
一、RESTful风格支持
1.1 RESTful风格介绍
RESTful风格是一种URL路径的设计风格。在RESTful风格的URL路径中,网络上的任意数据都可以看成一个资源,它可以是一段文本、一张图片,也可以是一个Java对象。而每个资源都会占据一个网络路径,无论对该资源进行增删改查,访问的路径是一致的。
传统URL:
那么如何区分对该资源是哪一种操作?通过请求方式不同,判断进行的是什么操作。
之前我们学过两种请求方式,GET请求和POST请求,而访问RESTful风格的URL一共有四种请求方式:
1.2 postman使用
默认情况下浏览器是无法发送DELETE请求和PUT请求的,我们可以使用Postman工具发送这些请求。这里我已经把该工具上传到我的资源里面去了,有需要的读者可以去下载:
添加请求
测试:
二、@PathVariable
作用:在RESTful风格的URL中获取占位符的值
位置:方法参数前
属性:
value:获取哪个占位符的值作为参数值,如果占位符和参数名相同,可以省略该属性。
2.1 实例程序
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>
2.2 测试结果
访问方式:
新增学生: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
三、@PostMapping、@GetMapping、@PutMapping、@DeleteMapping
为了简化请求方式@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"; } }
四、@HiddenHttpMethodFilter
由于浏览器form表单只支持GET与POST请求,而DELETE、PUT请求并不支持。SpringMVC有一个过滤器,可以将浏览器的POST请求改为指定的请求方式,发送给的控制器方法。用法如下:
4.1 在web.xml配置过滤器
<!-- 请求方式过滤器 -->
<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>
4.2 控制器方法
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";
}
}
4.3 JSP页面
<%@ 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>
4.4 测试结果
OK,我们去访问上面那个jsp:http://localhost:8080/delete-put.jsp
OK,我们点击删除时:
点击修改时:
可以看得到都是成功请求的了。
往期专栏&文章相关导读
大家如果对于本期内容有什么不了解的话也可以去看看往期的内容,下面列出了博主往期精心制作的Maven,Mybatis等专栏系列文章,走过路过不要错过哎!如果对您有所帮助的话就点点赞,收藏一下啪。其中Spring专栏有些正在更,所以无法查看,但是当博主全部更完之后就可以看啦。
1. Maven系列专栏文章
Maven系列专栏 | Maven工程开发 |
Maven聚合开发【实例详解—5555字】 |
2. Mybatis系列专栏文章
3. Spring系列专栏文章
4. Spring MVC系列专栏文章
原文地址:https://blog.csdn.net/qq_53317005/article/details/130502645
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如若转载,请注明出处:http://www.7code.cn/show_49489.html
如若内容造成侵权/违法违规/事实不符,请联系代码007邮箱:suwngjj01@126.com进行投诉反馈,一经查实,立即删除!