使用@pathvariable与@requestparam碰到的一些问题及解决
@pathvariable与@requestparam碰到的一些问题
一、@pathvariable
可以将 URL 中占位符参数绑定到控制器处理方法的入参中:URL 中的 {x} 占位符可以通过@PathVariable("x") 绑定到操作方法的入参中。
@GetMapping("/test/{id}")
public String test(@PathVariable("id") String id){
System.out.println("test:"+id);
return SUCCESS;
}
可以看出使用@pathvariable注解它直接从url中取参,但是如果参数是中文就会出现乱码情况,这时应该使用@requestparam注解
二、@requestparam
它是直接从请求中取参,它是直接拼接在url后面(demo?name=张三)
@GetMapping("/demo")
public String test(@requestparam(value="name") String name){
System.out.println("test:"+name);
return SUCCESS;
}
注:如果参数不必须传入的话,我们从源码中可以看出两者required默认为true,如图:
所以我们可以这样写,只写一个例子
@GetMapping("/demo")
public String test(@requestparam(value="name", required = false) String name){
System.out.println("test:"+name);
return SUCCESS;
}
@PathVariable和@RequestParam的使用说明
要说明@PathVariable和@RequestParam的使用,首先介绍 @RequestMapping
RequestMapping是一个用来处理请求地址映射的注解,可用于类或方法上。用于类上,表示类中的所有响应请求的方法都是以该地址作为父路径。
RequestMapping:Annotation for mapping web requests onto methods in request-handling classes with flexible method signatures.Both Spring MVC and Spring WebFlux support this annotation.
RequestMapping注解有六个属性,常用的是value,method;还有consumes,produces,params,headers。
value属性:指定请求的实际地址,当只设置value属性时,默认省略不写
即:@RequestMapping("/hello")或@RequestMapping(value="/hello")
value的uri值为以下三类
- A)可以指定为普通的具体值;
- B)可以指定为含有某变量的值(URI Template Patterns with Path Variables);
- C)可以指定为含正则表达式的值( URI Template Patterns with Regular Expressions)。
HelloController.java极简代码示例,既有PathVariable也有RequestParam
@RestController
public class HelloController {
@RequestMapping("/hellopv/{name}")
public String helloPV(@PathVariable String name, @RequestParam String username) {
String hello = "Hello " + username + " [" + name + "] !";
return hello;
}
}
感性认识一下,测试上述代码http://cos6743:8081/hellopv/tom?username=YangTom
@PathVariable是处理requet uri template中variable 的注解,实现了url入参绑定到方法参数上。
即:可以获取URL请求路径中的变量值,比如:RequestMapping("/hellopv/{name}")中的name
@RequestParam获取URL请求数据,是常用来处理简单类型的绑定注解。
通过Request.getParameter()获取入参,故此可以处理url中的参数,也可以处理表单提交的参数和上传的文件。
拓展
handler method 参数绑定常用的注解,根据处理的Request的不同内容分为四类常用类型
- A、处理requet uri 部分(指uri template中variable)的注解: @PathVariable;
- B、处理request header部分的注解: @RequestHeader, @CookieValue;
- C、处理request body部分的注解:@RequestParam, @RequestBody;
- D、处理attribute类型是注解: @SessionAttributes, @ModelAttribute;
以上为个人经验,希望能给大家一个参考,也希望大家多多支持编程网。
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341