Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

Zuul http request tracking method

2025-01-17 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)06/02 Report--

This article mainly explains the "zuul http request tracking method", the content of the article is simple and clear, easy to learn and understand, now please follow the editor's train of thought slowly in depth, together to study and learn "zuul http request tracking method"!

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;}} Thank you for your reading. This is the content of "zuul http request tracking method". After the study of this article, I believe you have a deeper understanding of the zuul http request tracking method, and the specific use needs to be verified in practice. Here is, the editor will push for you more related knowledge points of the article, welcome to follow!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report