首页 > 其他分享 >Required request parameter ‘xxx‘ for method parameter type xxxx is not present 解决方式

Required request parameter ‘xxx‘ for method parameter type xxxx is not present 解决方式

时间:2023-02-26 16:14:34浏览次数:27  
标签:xxxx RequestParam type Required method parameter id

我在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}

标签:xxxx,RequestParam,type,Required,method,parameter,id
From: https://www.cnblogs.com/I-Love-Wen0327/p/17156842.html

相关文章