1 测试环境
与这篇博客第3步的环境完全相同 : springMVC-测试Controller控制器
2 测试原来的风格
2.1 编写一个Controller类并添加方法
@Controller
public class RestFulController {
@RequestMapping("/add")
public String test1(int a,int b,Model model){
int res = a + b;
model.addAttribute("msg","结果为:"+res);
return "test";
}
}
2.2 配置Tomcat测试
原来风格的url : http://localhost:8080/add?a=5&b=3
3 测试RestFul风格
3.1修改Controller类中的方法
@Controller
public class RestFulController {
@RequestMapping("/add/{a}/{b}")
public String test1(@PathVariable int a,@PathVariable int b, Model model){
int res = a + b;
model.addAttribute("msg","结果为:"+res);
return "test";
}
}
3.2 配置Tomcat测试
RestFul风格的url : http://localhost:8080/add/5/3
4 测试RestFul风格使用method属性指定请求类型
4.1修改Controller类中的方法
@Controller
public class RestFulController {
//@RequestMapping(value = "/add/{a}/{b}",method = RequestMethod.GET)
@GetMapping("/add/{a}/{b}")//与上面的效果完全相同,相当于简写
public String test1(@PathVariable int a,@PathVariable int b, Model model){
int res = a + b;
model.addAttribute("msg","get请求的结果:"+res);
return "test";
}
//@RequestMapping(value = "/add/{a}/{b}",method = RequestMethod.POST)
@PostMapping("/add/{a}/{b}")//与上面的效果完全相同,相当于简写
public String test2(@PathVariable int a,@PathVariable int b, Model model){
int res = a + b;
model.addAttribute("msg","Post请求的结果:"+res);
return "test";
}
}
4.2 编写一个测试的jsp,添加两个form表单,采用不同的请求方式
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>Title</title>
</head>
<body>
post请求<form action="${pageContext.request.contextPath}/add/1/2" method="post">
<input type="submit">
</form>
<hr/>
get请求<form action="${pageContext.request.contextPath}/add/1/2" method="get">
<input type="submit">
</form>
</body>
</html>
4.3 配置Tomcat测试
点击post请求下面的提交按钮
点击get请求下面的提交按钮
两个请求的url都是:http://localhost:8080/add/1/2,却采用了不同的请求方式
4.4 补充
4.4.1除了get和Post 共有8种请求方式
所有的地址栏请求默认都会是 HTTP GET 类型的
4.4.2 对应不同请求方式的注解有如下5个:
- @GetMapping
- @PostMapping
- @PutMapping
- @DeleteMapping
- @PatchMapping
相当于是简写 @RequestMapping(value = "/add/{a}/{b}",method = RequestMethod.GET)
5 RestFul风格的优点
简洁,高效(支持缓存),安全