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

spring boot中post请求接收参数

程序员文章站 2024-01-20 19:02:40
...

spring boot遇坑记
参数直接写long id一直报错。调整为Long id后 拿到的结果一直是null。

注解使用
@PostMapping("/city")
或者
@RequestMapping(value = “/city2”, method = RequestMethod.POST)
两个没啥区别,@PostMapping是boot特有的,如果是get就用@GetMapping("/city")

参数需要加@RequestBody
如只传一个id,必须要封装到一个对象中,可以用JSONObject ,也可以自定义一个Param对象。

    @PostMapping("/city")
    public City city(@RequestBody JSONObject json) {
        return cityService.getById(json.getLong("id"));
    }

    @RequestMapping(value = "/city2", method = RequestMethod.POST)
    public City city2(@RequestBody CityParam cityParam) {
        return cityService.getById(cityParam.getId());
    

使用postman测试

spring boot中post请求接收参数

spring boot中post请求接收参数