Method has too many Body parameters的处理办法

SpringCloud Feign报错:Method has too many Body parameters

1、feign多参数问题

1.1GET方式

错误写法


@RequestMapping(value="/test", method=RequestMethod.GET)  

Model test(final String name,  final int age);  

启动服务的时候,会报如下异常:


Caused by: java.lang.IllegalStateException: Method has too many Body parameters: public abstract com.chhliu.springboot.restful.vo.User com.chhliu.springboot.restful.feignclient.UserFeignClient.findByUsername(java.lang.String,java.lang.String)  

异常原因:当使用Feign时,如果发送的是get请求,那么需要在请求参数前加上@RequestParam注解修饰,Controller里面可以不加该注解修饰 ,@RequestParam可以修饰多个,@RequestParam是用来修饰参数,不能用来修饰整个对象。

注意:@RequestParam Content-Type 为 application/x-www-form-urlencoded  而这种是默认的

正确写法

 @GetMapping("/getSchoolDetail")

    public ResultMap getSchoolDetail(@RequestParam("kSchoolId") LongkSchoolId,
     @RequestParam("kSchoolYearId") Long kSchoolYearId);
      

1.1POST方式

错误写法

public int save(@RequestBody final User u, @RequestBody final School s);

feign中你可以有多个@RequestParam,但只能有不超过一个@RequestBody,@RequestBody用来修饰对象,但是既有@RequestBody也有@RequestParam,那么参数就要放在请求的url中,@RequestBody修饰的就要放在提交对象中

注意 用来处理@RequestBody Content-Type 为 application/jsonapplication/xml编码的内容

 

正确写法

public int save(@RequestBody final Person p,@RequestParam("userId") String userId,@RequestParam("userTel") String userTel);

 

分类: SpringCloud

你可能感兴趣的:(Method has too many Body parameters的处理办法)