1、我在使用post接口的时候发现RequestParam接收不到POST过来的数据,提示Response status 400 with reason "Required String parameter 'xxx' is not present"。
经查阅,现在RequestParam只能接收query参数。详情见源代码RequestParamMethodArgumentResolver类中的resolveNamedValue方法。看来只能用RequestBody了。
1、我在使用post接口的时候发现RequestParam接收不到POST过来的数据,提示Response status 400 with reason "Required String parameter 'xxx' is not present"。
经查阅,现在RequestParam只能接收query参数。详情见源代码RequestParamMethodArgumentResolver类中的resolveNamedValue方法。看来只能用RequestBody了。
本文标题:[Spring Boot 2.0] Webflux遇到的坑
本文链接:https://www.haomeiwen.com/subject/blpwqftx.html
网友评论