Spring Cloud Feign拦截器

时间:2015-07-30 11:24:22

标签: java maven spring-cloud netflix-feign

我创建了一个ClientHttpRequestInterceptor,用于拦截所有传出的RestTemplate请求和响应。我想将拦截器添加到所有传出的Feign请求/响应中。有没有办法做到这一点?

我知道有一个feign.RequestInterceptor但是我只能拦截请求而不是响应。

我在Github中找到了一个类FeignConfiguration,它能够添加拦截器,但我不知道它在哪个maven依赖版本中。

2 个答案:

答案 0 :(得分:0)

如果您想使用spring cloud中的假,请使用org.springframework.cloud:spring-cloud-starter-feign作为依赖关系坐标。目前,修改响应的唯一方法是实现自己的feign.Client

答案 1 :(得分:0)

如何在Spring Cloud OpenFeign中拦截响应的实际示例。

  1. 通过扩展Client来创建自定义Client.Default,如下所示:
public class CustomFeignClient extends Client.Default {


    public CustomFeignClient(SSLSocketFactory sslContextFactory, HostnameVerifier hostnameVerifier) {
        super(sslContextFactory, hostnameVerifier);
    }

    @Override
    public Response execute(Request request, Request.Options options) throws IOException {

        Response response = super.execute(request, options);
        InputStream bodyStream = response.body().asInputStream();

        String responseBody = StreamUtils.copyToString(bodyStream, StandardCharsets.UTF_8);

        //TODO do whatever you want with the responseBody - parse and modify it

        return response.toBuilder().body(responseBody, StandardCharsets.UTF_8).build();
    }
}
  1. 然后在配置类中使用自定义Client
public class FeignClientConfig {


    public FeignClientConfig() { }

    @Bean
    public Client client() {
        return new CustomFeignClient(null, null);
    }

}
  1. 最后,在FeignClient中使用配置类:
@FeignClient(name = "api-client", url = "${api.base-url}", configuration = FeignClientConfig.class)
public interface ApiClient {

}

祝你好运