用于将指定的请求参数赋值给方法中的形参。
有三个属性:
(1)value:请求参数名(必须配置)
(2)required:是否必需,默认为 true,即 请求中必须包含该参数,如果没有包含,将会抛出异常(可选配置)
(3)defaultValue:设置默认值,如果设置了该值,required 将自动设为 false,无论你是否配置了required,配置了什么值,都是 false(可选配置)
用法:
@ResponseBody
@GetMapping("/RequestParam")
public Map test(@RequestParam("username") String username,@RequestParam("password") List password){
Map map=new HashMap();
map.put("username",username);
map.put("password",password);
return map;
}
也可以通过一个@RequestParam注解与Map集合类型参数同时获取多个参数:
@ResponseBody
@GetMapping("/RequestParam")
public Map test(@RequestParam Map map1){
Map map=new HashMap();
map.put("test",map1);
return map;
}
@PathVariable是Rest风格衍生出的占位符,只支持一个属性value,类型是为String,代表绑定的属性名称。默认不传递时,绑定为同名的形参。 用来便捷地提取URL中的动态参数。
应用时,在@RequestMapping请求路径中,将需要传递的参数用花括号{}括起来,然后,通过@PathVariable("参数名称")获取URL中对应的参数值。如果@PathVariable标明参数名称,则参数名称必须和URL中参数名称一致。
用法:
@ResponseBody
@GetMapping("/PathVariable/{name}/{age}")
public Map test(@PathVariable("name") String name,@PathVariable("age") Integer age){
Map map=new HashMap();
map.put("name",name);
map.put("age",age);
return map;
}
也可以使用一次注解获取多个参数:
@ResponseBody
@GetMapping("/PathVariable/{name}/{age}")
public Map test(@PathVariable Map map3){
Map map=new HashMap();
map.put("params",map3);
return map;
}
@RequestHeader 是获取请求头中的数据,通过指定参数 value 的值来获取请求头中指定的参数值。其他参数用法和 @RequestParam 完全一样。
用法:
@ResponseBody
@GetMapping("/RequestHeader")
public Map test(@RequestHeader("host") String host){
Map map=new HashMap();
map.put("header",host);
return map;
}
获取所有请求头信息:
@ResponseBody
@GetMapping("/RequestHeader")
public Map test(@RequestHeader Map map4){
Map map=new HashMap();
map.put("headers",map4);
return map;
}
@CookieValue可以获取请求中的Cookie值,@CookieValue 中的参数有三个,其中一个 value 用来指定 Cookie 中的参数名,其他参数用法和 @RequestParam 完全一样。
用法:
@ResponseBody
@GetMapping("/CookieValue")
public Map test(@CookieValue(required = false) Cookie cookie){
Map map=new HashMap();
map.put("cookies",cookie);
return map;
}
主要用来接收前端传递给后端的json字符串中的数据,也就是请求体中的数据,GET方式无请求体,所以使用@RequestBody接收数据时,前端不能使用GET方式提交数据,而是用POST方式进行提交。
在后端的同一个接收方法里,@RequestBody与@RequestParam()可以同时使用,@RequestBody最多只能有一个,而@RequestParam()可以有多个。
用法:
@ResponseBody
@PostMapping("/save")
//获取请求体参数
public String getRequestBody(@RequestBody String body){
return body;
}
获取请求域中所保存的属性的值。
用法:首先向浏览器发起goto请求并添加自定义值到请求域中,再转发到success请求去获取这些请求域中的值。
@GetMapping("/goto")
public String toSuccess(HttpServletRequest request){
request.setAttribute("msg","成功了!");
request.setAttribute("code",200);
return "forward:/success";
}
//使用@RequestAttribute注解获取请求域中的值与//不使用注解获取请求域中的值
@GetMapping("/success")
public String success(@RequestAttribute("msg")String msg,
@RequestAttribute("code") Integer code,
HttpServletRequest request){
Object msg1 = request.getAttribute("msg");
Map map=new HashMap();
map.put("msg",msg);
map.put("code",code);
System.out.println(map);
System.out.println(msg1);
return "success";
}