當前位置: 首頁>>代碼示例>>Java>>正文


Java HttpClient.setMaxConnectionsPerDestination方法代碼示例

本文整理匯總了Java中org.eclipse.jetty.client.HttpClient.setMaxConnectionsPerDestination方法的典型用法代碼示例。如果您正苦於以下問題:Java HttpClient.setMaxConnectionsPerDestination方法的具體用法?Java HttpClient.setMaxConnectionsPerDestination怎麽用?Java HttpClient.setMaxConnectionsPerDestination使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在org.eclipse.jetty.client.HttpClient的用法示例。


在下文中一共展示了HttpClient.setMaxConnectionsPerDestination方法的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: createHttpClient

import org.eclipse.jetty.client.HttpClient; //導入方法依賴的package包/類
private HttpClient createHttpClient() {
    //Allow ssl by default
    SslContextFactory sslContextFactory = new SslContextFactory();
    //Don't exclude RSA because Sixt needs them, dammit!
    sslContextFactory.setExcludeCipherSuites("");
    HttpClient client = new HttpClient(sslContextFactory);
    client.setFollowRedirects(false);
    client.setMaxConnectionsPerDestination(16);
    client.setConnectTimeout(FeatureFlags.getHttpConnectTimeout(serviceProperties));
    client.setAddressResolutionTimeout(FeatureFlags.getHttpAddressResolutionTimeout(serviceProperties));
    //You can set more restrictive timeouts per request, but not less, so
    //  we set the maximum timeout of 1 hour here.
    client.setIdleTimeout(60 * 60 * 1000);
    try {
        client.start();
    } catch (Exception e) {
        logger.error("Error building http client", e);
    }
    return client;
}
 
開發者ID:Sixt,項目名稱:ja-micro,代碼行數:21,代碼來源:InjectionModule.java

示例2: createHttpClient

import org.eclipse.jetty.client.HttpClient; //導入方法依賴的package包/類
private HttpClient createHttpClient() {
    SslContextFactory sslContextFactory = new SslContextFactory();
    sslContextFactory.setExcludeCipherSuites("");
    HttpClient client = new HttpClient(sslContextFactory);
    client.setFollowRedirects(false);
    client.setMaxConnectionsPerDestination(2);
    //You can set more restrictive timeouts per request, but not less, so
    //  we set the maximum timeout of 1 hour here.
    client.setIdleTimeout(60 * 60 * 1000);
    try {
        client.start();
    } catch (Exception e) {
        logger.error("Error building http client", e);
    }
    return client;
}
 
開發者ID:Sixt,項目名稱:ja-micro,代碼行數:17,代碼來源:ServiceImpersonatorLoadBalancer.java

示例3: getHttpClient

import org.eclipse.jetty.client.HttpClient; //導入方法依賴的package包/類
@Provides
public HttpClient getHttpClient() {
	HttpClient client = new HttpClient();
	client.setFollowRedirects(false);
	client.setMaxConnectionsPerDestination(32);
	client.setConnectTimeout(100);
	client.setAddressResolutionTimeout(100);
	//You can set more restrictive timeouts per request, but not less, so
	//  we set the maximum timeout of 1 hour here.
	client.setIdleTimeout(60 * 60 * 1000);
	try {
		client.start();
	} catch (Exception e) {
		logger.error("Error building http client", e);
	}
	return client;
}
 
開發者ID:Sixt,項目名稱:ja-micro,代碼行數:18,代碼來源:TestInjectionModule.java

示例4: initializeNettyClient

import org.eclipse.jetty.client.HttpClient; //導入方法依賴的package包/類
@PostConstruct
private void initializeNettyClient() {

    int THREAD_POOL_COUNT = messageManager.getIntProperty("undefined.netty.thread.count");
    int NETTY_MAX_CONNECTION = messageManager.getIntProperty("undefined.netty.max.connection");
    long NETTY_HTTP_TIMEOUT = messageManager.getLongProperty("undefined.netty.http.timeout");

    executor = Executors.newFixedThreadPool(THREAD_POOL_COUNT);
    httpClient = new HttpClient();
    try {
        httpClient.setMaxConnectionsPerDestination(NETTY_MAX_CONNECTION);
        httpClient.setConnectTimeout(NETTY_HTTP_TIMEOUT);
        httpClient.setExecutor(executor);
        httpClient.start();
    } catch(Exception e) {
        e.printStackTrace();
    }
}
 
開發者ID:longcoding,項目名稱:undefined-gateway,代碼行數:19,代碼來源:NettyClientFactory.java

示例5: initWebClient

import org.eclipse.jetty.client.HttpClient; //導入方法依賴的package包/類
@PostConstruct
private void initWebClient() {
  String userAgent = versionInfo.getUserAgent();

  this.cache = CacheBuilder.newBuilder()
      .expireAfterWrite(cacheDuration, TimeUnit.MILLISECONDS)
      .build();

  SslOverTlsContextFactory contextFactory = new SslOverTlsContextFactory();
  httpClient = new HttpClient(contextFactory);
  httpClient.setMaxConnectionsPerDestination(8);
  httpClient.setUserAgentField(new HttpField(HttpHeader.USER_AGENT, userAgent));
}
 
開發者ID:Juraji,項目名稱:Biliomi,代碼行數:14,代碼來源:WebClientImpl.java

示例6: provideHttpClient

import org.eclipse.jetty.client.HttpClient; //導入方法依賴的package包/類
@Provides
@Singleton
public HttpClient provideHttpClient(ExecutorService executorService,
                                    @Named("httpClient.maxConnectionsQueued") Integer maxConnectionsQueued,
                                    @Named("httpClient.maxConnectionPerRoute") Integer maxConnectionPerRoute,
                                    @Named("httpClient.requestBufferSize") Integer requestBufferSize,
                                    @Named("httpClient.responseBufferSize") Integer responseBufferSize,
                                    @Named("httpClient.maxRedirects") Integer maxRedirects,
                                    @Named("httpClient.trustAllCertificates") Boolean trustAllCertificates) {

    try {
        SslContextFactory sslContextFactory = new SslContextFactory();
        sslContextFactory.setTrustAll(trustAllCertificates);
        HttpClient httpClient = new HttpClient(sslContextFactory);
        httpClient.setExecutor(executorService);
        httpClient.setMaxConnectionsPerDestination(maxConnectionsQueued);
        httpClient.setMaxRequestsQueuedPerDestination(maxConnectionPerRoute);
        httpClient.setRequestBufferSize(requestBufferSize);
        httpClient.setResponseBufferSize(responseBufferSize);
        httpClient.setMaxRedirects(maxRedirects);
        httpClient.start();

        registerHttpClientShutdownHook(httpClient);

        return httpClient;
    } catch (Exception e) {
        logger.error(e.getLocalizedMessage(), e);
        throw new RuntimeException(e.getLocalizedMessage(), e);
    }
}
 
開發者ID:labsai,項目名稱:EDDI,代碼行數:31,代碼來源:HttpClientModule.java


注:本文中的org.eclipse.jetty.client.HttpClient.setMaxConnectionsPerDestination方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。