【框架改造问题点记录,dubbo改为spring cloud alibaba】
【第二篇】feign接口异常解决
【描述】多参数情况下,调用服务提供方无法传递完整参数、改@SpringQueryMap原因是会将实体自动拆分为拼接参数。目前只遇到多参数:实体和单参数情况,持续更新…
汇总:
1.多个普通参数,@RequestParam直接传递
2.多个混合参数,实体+单参数,@RequestBody+@RequestParam直接传递
3.多个实体或list或map参数,改成单个map或实体去传参
注意:一个方法中@RequestBody、@SpringQueryMap只能有一个,不然bean初始化会报嵌套异常
服务调用方
示例三处有问题代码:
@RequestMapping(value = "api相对路径", method = RequestMethod.POST)
ResultEntity functionName(@RequestBody Account account, @RequestParam("tenant") String tenant);
@RequestMapping(value = "api相对路径", method = RequestMethod.POST)
ResultEntity functionName(Account account, @RequestParam("tenant") String tenant);
@RequestMapping(value = "api相对路径", method = RequestMethod.GET)
ResultEntity functionName(Account account, @RequestParam("tenant") String tenant);
正确代码:
@RequestMapping(value = "api相对路径", method = RequestMethod.POST)
ResultEntity functionName(@SpringQueryMap Account account, @RequestParam("tenant") String tenant);
正确代码2:
@RequestMapping(value = "api相对路径", method = RequestMethod.POST)
ResultEntity functionName(@RequestBody Account account, @RequestParam("tenant") String tenant);
服务提供方
注意请求方式保持一致即可:文章来源:https://www.toymoban.com/news/detail-565356.html
@PostMapping("/api方法名")
ResultEntity functionName(Account account, String tenantId);
正确代码2:文章来源地址https://www.toymoban.com/news/detail-565356.html
@PostMapping("/api方法名")
ResultEntity functionName(@RequestBody Account account, String tenantId);
到了这里,关于Java 【dubbo rpc改feign调用】解决调用服务提供方无法传递完整参数问题的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!