为了账号安全,请及时绑定邮箱和手机立即绑定

使用Feign实现Form表单提交

标签:
Spring Cloud

之前,笔者写了《使用Spring Cloud Feign上传文件》。近日,有同事在对接遗留的Struts古董系统,需要使用Feign实现Form表单提交。其实步骤大同小异,本文附上步骤,算是对之前那篇的补充。

  • 添加依赖:

    <dependency>
      <groupId>io.github.openfeign.form</groupId>
      <artifactId>feign-form</artifactId>
      <version>3.2.2</version></dependency><dependency>
      <groupId>io.github.openfeign.form</groupId>
      <artifactId>feign-form-spring</artifactId>
      <version>3.2.2</version></dependency>
  • Feign Client示例:

    @FeignClient(name = "xxx", url = "http://www.itmuch.com/", configuration = TestFeignClient.FormSupportConfig.class)public interface TestFeignClient {    @PostMapping(value = "/test",
                consumes = {MediaType.APPLICATION_FORM_URLENCODED_VALUE},
                produces = {MediaType.APPLICATION_JSON_UTF8_VALUE}
                )    void post(Map<String, ?> queryParam);    class FormSupportConfig {        @Autowired
            private ObjectFactory<HttpMessageConverters> messageConverters;        // new一个form编码器,实现支持form表单提交
            @Bean
            public Encoder feignFormEncoder() {            return new SpringFormEncoder(new SpringEncoder(messageConverters));
            }        // 开启Feign的日志
            @Bean
            public Logger.Level logger() {            return Logger.Level.FULL;
            }
        }
    }
  • 调用示例:

    @GetMapping("/user/{id}")public User findById(@PathVariable Long id) {
      HashMap<String, String> param = Maps.newHashMap();
      param.put("username","zhangsan");
      param.put("password","pwd");  this.testFeignClient.post(param);  return new User();
    }
  • 日志:

...[TestFeignClient#post] ---> POST http://www.baidu.com/test HTTP/1.1
...[TestFeignClient#post] Accept: application/json;charset=UTF-8
...[TestFeignClient#post] Content-Type: application/x-www-form-urlencoded; charset=UTF-8
...[TestFeignClient#post] Content-Length: 30
...[TestFeignClient#post] 
...[TestFeignClient#post] password=pwd&username=zhangsan
...[TestFeignClient#post] ---> END HTTP (30-byte body)
  • 由日志可知,此时Feign已能使用Form表单方式提交数据。

参考文档



点击查看更多内容
TA 点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
  • 推荐
  • 评论
  • 收藏
  • 共同学习,写下你的评论
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消