在get/post请求中@PathVariable和@RequestBody 和 @Requestparam和HttpServletRequest 的区别
网上翻阅了很多博客,对四种参数做了总结。
@PathVariable
主要作用:映射URL绑定的占位符
带占位符的URL是 Spring3.0 新增的功能,URL中的 {xxx} 占位符可以通过 @PathVariable("xxx") 绑定到操作方法的入参中。
如:
@RequestMapping("/user/{id}")
public String testPathVariable(@PathVariable("id") String id){
System.out.println("test:"+id);
return "true";
}
上面的@RequestMapping中的{id},就和参数中@PathVariable("id")进行绑定,当你从url后写的参数会直接和你方法中的参数进行绑定,如:假如你的请求为localhost:8080/demo/888,会输出:
test:888
@RequestParam
有三个配置参数:
-
required
表示是否必须,默认为true
,必须。 -
defaultValue
可设置请求参数的默认值。 -
value
为接收url的参数名(相当于key值)。
比如像这种:
public String queryUserName(@RequestParam(value="userName" ,required =false ) String userName)
@RequestParam用来处理 Content-Type
为 application/x-www-form-urlencoded
编码的内容,Content-Type
默认为该属性。
所以在postman中,要选择body的类型为 x-www-form-urlencoded
,这样在headers中就自动变为了 Content-Type
: application/x-www-form-urlencoded
编码格式。
也可以在url后面直接定义参数的值。
如果你传进来的参数是空值的话,可以指定一个默认值让它填充
@RequestBody
注解@RequestBody接收的参数是来自requestBody中,即请求体。一般用于处理非 Content-Type: application/x-www-form-urlencoded编码格式的数据,比如:application/json、application/xml等类型的数据。
就application/json类型的数据而言,使用注解@RequestBody可以将body里面所有的json数据传到后端,后端再进行解析。
HttpServletRequest request
“这个在拦截器中碰到过,不能使用json 除了表单在vue可以使用 letapplication/json不可用 form-data、x-www-form-urlencoded时可用”(其实是可以用的,把它变成字节流再变成字符流再转成json然后转成键值对读它的数据)
BufferedReader streamReader = new BufferedReader(newInputStreamReader(request.getInputStream(), "UTF-8"));
StringBuilder respomseStrBuilder = new StringBuilder();
String jsonStrParam = "";
while ((jsonStrParam = streamReader.readLine()) != null) {
respomseStrBuilder.append(jsonStrParam);
}
String json = respomseStrBuilder.toString();
Map mapObj = JSONObject.parseObject(json, Map.class);
Object bzbh = mapObj.get("某个键值");
这样也是可以获取待前端用json得到的数据的。