springMVC中获取URl参数注解

导读:本篇文章讲解 springMVC中获取URl参数注解,希望对大家有帮助,欢迎收藏,转发!站点地址:www.bmabk.com

一.注解

  • @ PathVariable
  • @RequestParam
  • @RequestBody

springMVC中获取参数的注解主要为这三个。

@PathVariable

controller映射的路径上具有一个占位符,@PathVariable可以接收请求路径中占位符的值并将之赋值给所注解的参数。

//  url:xxx/test/参数
@GetMapping("/test/{name1}")
public String test1(@PathVariable("name1") String name){
    return name;
}

访问:http://127.0.0.1:8080/test/110

110

@RequestParam

每个参数都已Key=Value的形式跟在url的后方,@RequestParam可以获取url后面参数中与自己所定义的参数名的值并注入到所注解的参数中。

//  url:xxx?name=值&age=值
    @GetMapping("test")
    public String test2(@RequestParam("name")String name){
        return name;
    }

访问:http://127.0.0.1:8080/test?name=tom

tom

@RequestBody

多用于content-type为application/json,@RequestBody会获取请求中所携带的json字符串内容并与注解的bean进行参数对比。

//  url:xxx  参数为json字符串  POST
    @PostMapping("test")
    public Person test3(@RequestBody Person person){
        return person ;
    }

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/63429.html

(0)
小半的头像小半

相关推荐

极客之音——专业性很强的中文编程技术网站,欢迎收藏到浏览器,订阅我们!