本文整理汇总了Java中com.sun.jersey.client.apache.config.ApacheHttpClientConfig类的典型用法代码示例。如果您正苦于以下问题:Java ApacheHttpClientConfig类的具体用法?Java ApacheHttpClientConfig怎么用?Java ApacheHttpClientConfig使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
ApacheHttpClientConfig类属于com.sun.jersey.client.apache.config包,在下文中一共展示了ApacheHttpClientConfig类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: setup
import com.sun.jersey.client.apache.config.ApacheHttpClientConfig; //导入依赖的package包/类
/**
* Setup the client and needed SSL configuration
*/
@PostConstruct
public void setup() {
this.shopBaseUrl = shopUrl + BASE_URL_PATH;
ApacheHttpClientConfig clientConfig = new DefaultApacheHttpClientConfig();
clientConfig.getProperties().put(ApacheHttpClientConfig.PROPERTY_HANDLE_COOKIES, true);
this.client = ApacheHttpClient.create(clientConfig);
this.authorizationResource = addStandardQueryParameters(this.client.resource(this.shopBaseUrl.replace("http", "https") + "/customers/auth"));
this.basketResource = addStandardQueryParameters(this.client.resource(this.shopBaseUrl.replace("http", "https") + "/baskets"));
this.productResource = addStandardQueryParameters(this.client.resource(this.shopBaseUrl + "/products"));
this.productSearchResource = addStandardQueryParameters(this.client.resource(this.shopBaseUrl + "/product_search"));
this.categoryResource = addStandardQueryParameters(this.client.resource(this.shopBaseUrl + "/categories"));
if ( this.trustAllSSLCerts ) {
// SSL configuration
clientConfig.getProperties().put(com.sun.jersey.client.urlconnection.HTTPSProperties.PROPERTY_HTTPS_PROPERTIES, new com.sun.jersey.client.urlconnection.HTTPSProperties(getHostnameVerifier(), getNonValidatingSecurityContext()));
}
}
示例2: init
import com.sun.jersey.client.apache.config.ApacheHttpClientConfig; //导入依赖的package包/类
/**
* overrideable e.g for SSL configuration
*
* @throws Exception
*/
@Override
public void init(String siteurl, String scriptpath) throws Exception {
ApacheHttpClientConfig config = new DefaultApacheHttpClientConfig();
config.getProperties().put(ApacheHttpClientConfig.PROPERTY_HANDLE_COOKIES,
true);
client = ApacheHttpClient.create(config);
client.setFollowRedirects(true);
// org.apache.log4j.Logger.getLogger("httpclient").setLevel(Level.ERROR);
this.siteurl = siteurl;
this.scriptPath = scriptpath;
}
示例3: restClientInit
import com.sun.jersey.client.apache.config.ApacheHttpClientConfig; //导入依赖的package包/类
/**
* Prepares the REST client
* @throws URISyntaxException
*/
private void restClientInit() throws URISyntaxException {
DefaultApacheHttpClientConfig clientConfig = new DefaultApacheHttpClientConfig();
clientConfig.getProperties().put(ApacheHttpClientConfig.PROPERTY_HANDLE_COOKIES, Boolean.TRUE);
clientConfig.getProperties().put(ApacheHttpClientConfig.PROPERTY_PREEMPTIVE_AUTHENTICATION, Boolean.TRUE);
clientConfig.getProperties().put(ClientConfig.PROPERTY_CONNECT_TIMEOUT, getHttpTimeout());
clientConfig.getProperties().put(ClientConfig.PROPERTY_READ_TIMEOUT, getHttpTimeout());
clientConfig.getProperties().put(ClientConfig.PROPERTY_THREADPOOL_SIZE, getHttpMaxConnections());
crowdServer = new URI(getCrowdServerUrl()).resolve("rest/usermanagement/1/");
ApacheHttpClientState httpState = new ApacheHttpClientState();
httpState.setCredentials(null, crowdServer.getHost(), crowdServer.getPort(), getApplicationName(), getApplicationPassword());
if (getHttpProxyHost().trim().length() > 0 && getHttpProxyPort() > 0) {
clientConfig.getProperties().put(ApacheHttpClientConfig.PROPERTY_PROXY_URI, getHttpProxyHost() + ':' + getHttpProxyPort());
if (getHttpProxyUsername() != null && getHttpProxyPassword() != null) {
httpState.setProxyCredentials(null, getHttpProxyHost(), getHttpProxyPort(), getHttpProxyUsername(), getHttpProxyPassword());
}
}
clientConfig.getProperties().put(ApacheHttpClientConfig.PROPERTY_HTTP_STATE, httpState);
if (LOG.isDebugEnabled()) {
LOG.debug("HTTP Client config");
LOG.debug(getCrowdServerUrl());
LOG.debug(crowdServer.toString());
LOG.debug("PROPERTY_THREADPOOL_SIZE:" + clientConfig.getProperty(ClientConfig.PROPERTY_THREADPOOL_SIZE));
LOG.debug("PROPERTY_READ_TIMEOUT:" + clientConfig.getProperty(ClientConfig.PROPERTY_READ_TIMEOUT));
LOG.debug("PROPERTY_CONNECT_TIMEOUT:" + clientConfig.getProperty(ClientConfig.PROPERTY_CONNECT_TIMEOUT));
LOG.debug("PROPERTY_PROXY_URI:" + clientConfig.getProperty(ApacheHttpClientConfig.PROPERTY_PROXY_URI));
LOG.debug("Crowd application name:" + getApplicationName());
}
client = ApacheHttpClient.create(clientConfig);
}
示例4: RestClient
import com.sun.jersey.client.apache.config.ApacheHttpClientConfig; //导入依赖的package包/类
public RestClient(Configuration config) throws URISyntaxException {
this.userIdMatcher = new UserIdMatcher(config);
DefaultApacheHttpClientConfig clientConfig = new DefaultApacheHttpClientConfig();
clientConfig.getProperties().put(ApacheHttpClientConfig.PROPERTY_HANDLE_COOKIES, Boolean.TRUE);
clientConfig.getProperties().put(ClientConfig.PROPERTY_CONNECT_TIMEOUT, new Integer(config.getHttpTimeout()));
clientConfig.getProperties().put(ClientConfig.PROPERTY_READ_TIMEOUT, new Integer(config.getHttpTimeout()));
clientConfig.getProperties().put(ClientConfig.PROPERTY_THREADPOOL_SIZE, new Integer(config.getHttpMaxConnections()));
// /api/v3/user?private_token=<fill in>
serverURL = new URI(config.getGitlabServerUrl()).resolve(GITLAB_API_PATH);
ApacheHttpClientState httpState = new ApacheHttpClientState();
httpState.clearCredentials();
if (StringUtils.isNotBlank(config.getHttpProxyHost()) && config.getHttpProxyPort() > 0) {
clientConfig.getProperties().put(ApacheHttpClientConfig.PROPERTY_PROXY_URI,
config.getHttpProxyHost() + ':' + config.getHttpProxyPort());
if (config.getHttpProxyUsername() != null && config.getHttpProxyPassword() != null) {
httpState.setProxyCredentials(null, config.getHttpProxyHost(), config.getHttpProxyPort(),
config.getHttpProxyUsername(), config.getHttpProxyPassword());
}
}
clientConfig.getProperties().put(ApacheHttpClientConfig.PROPERTY_HTTP_STATE, httpState);
clientConfig.getClasses().add(JacksonJsonProvider.class);
if (LOGGER.isDebugEnabled()) {
LOGGER.debug("Gitlab HTTP Client config");
LOGGER.debug(config.getGitlabServerUrl());
LOGGER.debug(serverURL.toString());
LOGGER.debug("PROPERTY_THREADPOOL_SIZE: {}", clientConfig.getProperty(ClientConfig.PROPERTY_THREADPOOL_SIZE));
LOGGER.debug("PROPERTY_READ_TIMEOUT: {}", clientConfig.getProperty(ClientConfig.PROPERTY_READ_TIMEOUT));
LOGGER.debug("PROPERTY_CONNECT_TIMEOUT: {}", clientConfig.getProperty(ClientConfig.PROPERTY_CONNECT_TIMEOUT));
LOGGER.debug("PROPERTY_PROXY_URI: {}", clientConfig.getProperty(ApacheHttpClientConfig.PROPERTY_PROXY_URI));
}
client = ApacheHttpClient.create(clientConfig);
}