使用Feign实现Form表单提交

简介: 原文:http://www.itmuch.com/spring-cloud-sum/feign-form-params/之前,笔者写了《使用Spring Cloud Feign上传文件》。

原文:http://www.itmuch.com/spring-cloud-sum/feign-form-params/

之前,笔者写了《使用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表单方式提交数据。

参考文档

目录
相关文章
|
10月前
|
JSON JavaScript 前端开发
form表单提交方式
form表单提交方式
|
10月前
|
JSON 前端开发 Java
Springboot接收ajax提交JSON数组
Springboot接收ajax提交JSON数组
118 0
|
4月前
获取form表单提交的内容
获取form表单提交的内容
|
4月前
|
NoSQL Java API
SpringBoot项目中防止表单重复提交的两种方法(自定义注解解决API接口幂等设计和重定向)
SpringBoot项目中防止表单重复提交的两种方法(自定义注解解决API接口幂等设计和重定向)
308 0
|
10月前
|
小程序 前端开发 JavaScript
小程序提交form表单
微信小程序提交form表单内容
76 0
|
前端开发
前端提交POST请求却变成GET请求的原因及解决方法
前端提交POST请求却变成GET请求的原因及解决方法
665 3
|
NoSQL Java 数据库
SpringBoot实现表单重复提交检测
在实际开发过程中,web应用经常会出现网络延迟,接口处理时间略长,用户习惯等原因造成的客户连续多次点击提交按钮调用接口,导致数据库会出现重复数据或这接口业务逻辑bug等问题
76 0
|
Java Spring
thymeleaf发送post请求的两种方式
thymeleaf发送post请求的两种方式
|
JSON 数据格式
axios.post提交的三种请求方式
axios.post提交的三种请求方式