首先说一下这个错误的场景,这是SpringBoot微服务项目;
我们使用fegin调用接口的时候,报:Method has too many Body parameters这个错误。
其实,SpringCloud Eureka的 fegin有个规则;
就就是参数必须带@RequestParam这个注解;
之前看有人使用@Param这个注解代替@RequestParam,但是这样是不正确的,或许以前可以,但是现在已经不行行了;

我贴上我的代码;

api-接口

public interface MemberService {

	// 使用userId查找用户信息
	@RequestMapping("/findUserById")
	ResponseBase findUserById(@RequestParam("userId") Long userId);
}

mapper

@Mapper
public interface MemberDao {

	@Select("select  id,username,password,phone,email,created,updated,token from mb_user where id =#{userId}")
	UserEntity findByID(@RequestParam("userId") Long userId);
	}

实现类的话,如果是mapperImpl 也是需要加@RequestParam的,但是如果是controller则不需要加@RequestParam

@Controller
public class RegisterController {
	@Autowired
	private MemberServiceFegin memberServiceFegin;
	// 跳转注册页面
	@RequestMapping(value = "/register", method = RequestMethod.GET)
	public String registerGet() {
		return REGISTER;
	}
	}

我这个是controller实现了接口,所以不用参数前面不用@RequestParam修饰;

POST方式只能有一个@RequestBody多个@RequestParam

Logo

权威|前沿|技术|干货|国内首个API全生命周期开发者社区

更多推荐