我在spring boot中使用feign实现负载均衡时,在service中,我写了这么一个方法
@RequestMapping(value = "user/reg1")
public ResultVO reg1(@RequestBody UserVO userVO,HttpServletRequest request);
但是却报错了,告诉我Method has too many Body parameters,但是我在单独服务器中,在controller中这么写,完全没问题,唯独在这里却报错,简直了,人傻了,求帮忙解决一下呗
参考