springboot 通过@FeignClient 调用远程接口上传文件

在解决这个问题的时候,踩过好多坑;这里只写最终成功的方案,这种方案也是一本万利的写法,不会影响其他的feign接口的调用,最后希望对大家有所帮助

1、首先创建一个配置类

package com.meritdata.dam.common.uploadfile;

import feign.codec.Encoder;
import feign.form.spring.SpringFormEncoder;
import org.springframework.beans.factory.ObjectFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.autoconfigure.http.HttpMessageConverters;
import org.springframework.cloud.openfeign.support.SpringEncoder;
import org.springframework.context.annotation.Bean;

public class FeignMultipartSupport {
    @Autowired
    private ObjectFactory<HttpMessageConverters> messageConverters;

    @Bean
    public Encoder feignFormEncoder() {
        return new SpringFormEncoder(new SpringEncoder(messageConverters));
    }

}

注意:这个配置类,不需要加@Configuration

2、将上面的配置类,配置到@FeignClient注解中

@Service(value = "damDataWarehouseClient")
@FeignClient(value = "dam-datawarehouse", path = "/api/datamanage", configuration = FeignMultipartSupportConfig.class)
public interface DamDataWarehouseClient {
	    /**
     * 导入资源信息
     *
     * @param file file
     */
    @RequestMapping(value = "/resourcecatalog/manage/loadData", method = RequestMethod.POST, consumes = MediaType.MULTIPART_FORM_DATA_VALUE)
    @ResponseBody
    ResultBody loadData(@RequestPart("formFile") MultipartFile file) throws Exception;
    }

3、需要在调用的接口中加consumes = MediaType.MULTIPART_FORM_DATA_VALUE

@FeignClient是一个用于声明式REST客户端的注解。它可以让我们以声明式的方式定义一个接口,通过该接口调用远程HTTP服务。 在使用@FeignClient时,我们需要按照以下步骤进行: 1. 在pom.xml中添加以下依赖: ```xml <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-openfeign</artifactId> </dependency> ``` 2. 在启动类上添加@EnableFeignClients注解,开启FeignClient功能。 ```java @SpringBootApplication @EnableFeignClients public class Application { public static void main(String[] args) { SpringApplication.run(Application.class, args); } } ``` 3. 创建一个接口,并使用@FeignClient注解来声明一个FeignClient。 ```java @FeignClient(name = "example", url = "http://example.com") public interface ExampleClient { @GetMapping("/users/{id}") User getUserById(@PathVariable("id") Long id); } ``` 4. 在需要调用远程服务的地方,将上一步创建的接口注入并使用即可。 ```java @RestController public class ExampleController { private final ExampleClient exampleClient; public ExampleController(ExampleClient exampleClient) { this.exampleClient = exampleClient; } @GetMapping("/users/{id}") public User getUserById(@PathVariable Long id) { return exampleClient.getUserById(id); } } ``` 以上就是@FeignClient的使用方法。需要注意的是,name属性指定了FeignClient的名称,可以任意指定;url属性指定了远程服务的URL地址。在接口中定义的方法,与远程服务的接口方法定义一致。同时,FeignClient也支持使用Eureka等注册中心来进行服务发现。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值