Required request parameter ‘xxx‘ for method parameter type xxxx is not present 解决方式
我在controller层传实体参数时加了@RequestParam,结果报Required request parameter ‘pointlist’ for method parameter type List is not present,是因为@RequestParam不支持post请求
| 注解 | 支持的类型 | 支持的请求类型 | 支持的Content-Type | 请求示例 |
| @PathVariable | url | GET | 所有 | /test/{id} |
| @RequestParam | url | GET | 所有 | /test?id=1 |
| @RequestBody | Body | POST/PUT/DELETE/PATCH | json | {“id”:1} |
本文来自博客园,作者:LucasいYzx,转载请注明原文链接:https://www.cnblogs.com/I-Love-Wen0327/p/17156842.html

浙公网安备 33010602011771号