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 发送 http post 请求
-
spring boot中post请求接收参数
-
Kotlin + Spring Boot 请求参数验证的代码实例
-
spring boot中controller的使用及url参数的获取方法
-
Servlet获取AJAX POST请求中参数以form data和request payload形式传输的方法
-
spring boot中controller的使用及url参数的获取方法
-
通过spring boot 设置tomcat解决 post参数限制问题
-
PHP中Http协议post请求参数
-
Angularjs中$http以post请求通过消息体传递参数的实现方法
-
Spring boot中自定义Json参数解析器