spring boot中post请求接收参数

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请求接收参数_第1张图片

spring boot中post请求接收参数_第2张图片

你可能感兴趣的:(spring boot中post请求接收参数)