【spring】RequestMapping参数说明
背景:HTTP协议Header中的两个东西 ContentType 和Accept
- ContentType: 告诉服务器当前发送的数据是什么格式
- Accept : 用来告诉服务器,客户端能认识哪些格式,最好返回这些格式
@RequestMapping(value = "/api/user/info/login",method = RequestMethod.POST,headers = {"content-type=application/json"})
- value: 指定请求的实际地址,指定的地址可以是URI Template 模式
- method: 指定请求的method类型, PUT、GET、DELETE、POST 分别对应注解@PutMapping @GetMapping @DeleteMapping @PostMapping;
- consumes: 指定处理请求的提交内容类型(Content-Type),例如application/json, text/html;
- produces: 指定返回的内容类型,仅当request请求头中的(Accept)类型中包含该指定类型才返回;
- params: 指定request中必须包含某些参数值是,才让该方法处理。
- headers: 指定request中必须包含某些指定的header值,才能让该方法处理请求。