zuul http请求跟踪

 

@Configuration
@ConditionalOnClass(name = "org.apache.http.client.HttpClient")
@ConditionalOnProperty(name = "ribbon.httpclient.enabled", matchIfMissing = true)
public class HttpClientRibbonConfiguration {
  
  @Bean
    @ConditionalOnMissingBean(HttpClientConnectionManager.class)
    public HttpClientConnectionManager httpClientConnectionManager(
        IClientConfig config,
        ApacheHttpClientConnectionManagerFactory connectionManagerFactory) {
      Integer maxTotalConnections = config.getPropertyAsInteger(
          CommonClientConfigKey.MaxTotalConnections,
          DefaultClientConfigImpl.DEFAULT_MAX_TOTAL_CONNECTIONS);
      Integer maxConnectionsPerHost = config.getPropertyAsInteger(
          CommonClientConfigKey.MaxConnectionsPerHost,
          DefaultClientConfigImpl.DEFAULT_MAX_CONNECTIONS_PER_HOST);
      Integer timerRepeat = config.getPropertyAsInteger(
          CommonClientConfigKey.ConnectionCleanerRepeatInterval,
          DefaultClientConfigImpl.DEFAULT_CONNECTION_IDLE_TIMERTASK_REPEAT_IN_MSECS);
      Object timeToLiveObj = config
          .getProperty(CommonClientConfigKey.PoolKeepAliveTime);
      Long timeToLive = DefaultClientConfigImpl.DEFAULT_POOL_KEEP_ALIVE_TIME;
      Object ttlUnitObj = config
          .getProperty(CommonClientConfigKey.PoolKeepAliveTimeUnits);
      TimeUnit ttlUnit = DefaultClientConfigImpl.DEFAULT_POOL_KEEP_ALIVE_TIME_UNITS;
      if (timeToLiveObj instanceof Long) {
        timeToLive = (Long) timeToLiveObj;
      } else if (timeToLiveObj instanceof String) {
        timeToLive = Long.valueOf((String)timeToLiveObj);
      }
      if (ttlUnitObj instanceof TimeUnit) {
        ttlUnit = (TimeUnit) ttlUnitObj;
      }
      final HttpClientConnectionManager connectionManager = connectionManagerFactory
          .newConnectionManager(false, maxTotalConnections,
              maxConnectionsPerHost, timeToLive, ttlUnit, registryBuilder);
      this.connectionManagerTimer.schedule(new TimerTask() {
        @Override
        public void run() {
          connectionManager.closeExpiredConnections();
        }
      }, 30000, timerRepeat);
      return connectionManager;
    }
​
    @Bean
    @ConditionalOnMissingBean(CloseableHttpClient.class)
    public CloseableHttpClient httpClient(ApacheHttpClientFactory httpClientFactory,
                        HttpClientConnectionManager connectionManager, IClientConfig config) {
      Boolean followRedirects = config.getPropertyAsBoolean(
          CommonClientConfigKey.FollowRedirects,
          DefaultClientConfigImpl.DEFAULT_FOLLOW_REDIRECTS);
      Integer connectTimeout = config.getPropertyAsInteger(
          CommonClientConfigKey.ConnectTimeout,
          DefaultClientConfigImpl.DEFAULT_CONNECT_TIMEOUT);
      RequestConfig defaultRequestConfig = RequestConfig.custom()
          .setConnectTimeout(connectTimeout)
          .setRedirectsEnabled(followRedirects).build();
      this.httpClient = httpClientFactory.createBuilder().
          setDefaultRequestConfig(defaultRequestConfig).
          setConnectionManager(connectionManager).build();
      return httpClient;
    }
}

转载于:https://my.oschina.net/yugj/blog/3094347

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值