9

谁能告诉我 Spring Cloud Feign Client 是否提供或支持 Http Connection Pooling,如果是,如何配置池大小等设置?我似乎在官方文档中找不到这个。谢谢你。

4

2 回答 2

9

通过调查,我将尝试回答我自己的问题:

Spring Cloud Feign 使用 Netflix Feign。Netflix Feign 反过来使用 java.net.HttpURLConnection 创建连接,它使用“持久连接”而不是连接池。

可以覆盖客户端,例如改用 Apache HttpClient,而 Netflix 为此提供了一个库(feign-httpclient)。使用这种方法时,可以使用 SystemProperties 设置连接池大小。

在 Spring Cloud Brixton 中,如果 Apache HttpClient 或 OkHttpClient 可用(通过@ConditionalOnClass),那么它们会被自动使用。

于 2016-03-31T14:47:32.433 回答
0

这是一个例子。

@Bean
public ServiceXFeignClient serviceXClient(Encoder encoder, Decoder decoder,
  Contract contract, ClientProperties properties, ProxyProperties proxyProperties) {

  OkHttpClient.Builder okHttpClient = new OkHttpClient.Builder()
    .connectionPool(
      new ConnectionPool(properties.getPoolConnectionMaxIdle(),
      properties.getPoolConnectionKeepMinutesAlive(), TimeUnit.MINUTES))
    .build();

  return Feign.builder()
        .client(new feign.okhttp.OkHttpClient(okHttpClient))
    .encoder(encoder)
    .decoder(decoder)
    .contract(contract)
    .target(ServiceXFeignClient.class, properties.getUrl());
}

于 2020-10-23T04:35:44.027 回答