热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

SpringCloudFeign异常分析:java.lang.IllegalStateException导致方法体参数过多问题详解

本文深入探讨了在使用SpringCloudFeign时遇到的`java.lang.IllegalStateException`异常,具体表现为方法体参数过多的问题。通过详细分析异常原因和代码结构,提出了有效的解决方案,帮助开发者更好地理解和处理这一常见问题。

Caused by: java.lang.IllegalStateException: Method has too many Body parameters:public abstract com.hujiang.framework.web.domain.AjaxResult com.hujiang.project.zhgd.client.SystemClient.getSystemPrivileges_app(java.lang.Integer,java.lang.Integer)

GET方式

错误写法

@RequestMapping(value="/test", method=RequestMethod.GET)
User test(String name, int age);

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

Caused by: java.lang.IllegalStateException: Method has too many Body parameters: public abstract com.hujiang.framework.web.domain.AjaxResult com.hujiang.project.zhgd.client.SystemClient.getSystemPrivileges_app(java.lang.Integer,java.lang.Integer)

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

正确写法

@RequestMapping(value="/test", method=RequestMethod.GET)
User test(@RequestParam("name") String name,@RequestParam("age") int age);

POST方式

 

错误写法

public int save(@RequestBody Person p, @RequestBody UserModel user);

feign中你可以有多个@RequestParam,但只能有不超过一个@RequestBody。

正确写法

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

 


推荐阅读
author-avatar
weiwei
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有