欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

关于 @PathVariable @RequestParam @RequestBody

程序员文章站 2022-06-17 08:47:31
...

@PathVariable @RequestParam 的get请求:

    @GetMapping("/test1/{id}")
    public String show(@PathVariable(value = "id") String stuId,
                       @RequestParam(value = "name",required = true)String name,
                       @RequestParam(value = "address",required = false)String address){
        String result=stuId+name+address;
        return result;
    }

利用postman请求成功:

关于 @PathVariable @RequestParam @RequestBody

由于对于name设置成必须,所以没有name则请求失败!
关于 @PathVariable @RequestParam @RequestBody

而address没有设置成必须,所以正常访问!

关于 @PathVariable @RequestParam @RequestBody
post和get 一样

关于 @PathVariable @RequestParam @RequestBody

@RequestBody

@RequestBody主要用来接收前端传递给后端的json字符串中的数据的(请求体中的数据的);GET方式无请求体,所以使用@RequestBody接收数据时,前端不能使用GET方式提交数据,而是用POST方式进行提交。在后端的同一个接收方法里,@RequestBody与@RequestParam()可以同时使用,@RequestBody最多只能有一个,而@RequestParam()可以有多个。

    @PostMapping("/test2")
    public Student show1(@RequestBody Student student){
        return student;
    }

传递json

return student;
}


传递json
![在这里插入图片描述](https://img-blog.csdnimg.cn/20200729143341282.png?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L3NpbmF0XzM5MzM2MzI4,size_16,color_FFFFFF,t_70#pic_center)

相关标签: java