[Spring Boot 2.0] Webflux遇到的坑
2018-03-21 本文已影响0人
kun1988
1、我在使用post接口的时候发现RequestParam接收不到POST过来的数据,提示Response status 400 with reason "Required String parameter 'xxx' is not present"。
经查阅,现在RequestParam只能接收query参数。详情见源代码RequestParamMethodArgumentResolver类中的resolveNamedValue方法。看来只能用RequestBody了。