springcloud openfeign通过map传递form表单参数

Posted Leo Han

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springcloud openfeign通过map传递form表单参数相关的知识,希望对你有一定的参考价值。

在使用openfeign的时候,有些时候我们需要请求接收端接收的是form表单参数,如果参数比较多,那么方法的参数列表将会很长,很多时候都会通过map来进行传递,而feign默认情况下传递map会出现问题,这个时候,我们可以通过如下解决:

  1. 注入SrpingFormeEncoder,来支持map传参时,进行表单参数的编码:
class Configuration 
        @Bean
        Encoder feignFormEncoder(ObjectFactory<HttpMessageConverters> converters) 
            return new SpringFormEncoder(new SpringEncoder(converters));
        
    
  1. feign接口上必须加上consumes="application/x-www-form-urlencoded"以及参数必须是RequestBody Map<String,?>:
    @PostMapping(value = "/feign/sayHelloWithMap"
            ,consumes ="application/x-www-form-urlencoded"
    )
    String sayHelloWithMap(@RequestBody Map<String,?> map);

这样就能够支持通过map传递form参数

以上是关于springcloud openfeign通过map传递form表单参数的主要内容,如果未能解决你的问题,请参考以下文章

springcloud openfeign通过map传递form表单参数

springcloud openfeign通过map传递form表单参数

SpringCloud OpenFeign Demo

springcloud openFeign 请求超时问题解决

最适合新手入门的SpringCloud教程 7—OpenFeign「F版本」

SpringCloud(15)——OpenFeign超时控制