我的开发环境是代理的背后,所以我需要将代理信息设置为其余模板,当我使用HttpComponentsClientHttpRequestFactory并在httpClient中设置代理设置并将其设置在模板中时,这一切都很好。
但现在我有一个需要基本身份验证的休息服务。要设置基本身份验证凭据,我需要在其余模板的httpClient中设置它们。但是我看到httpClient中的getparams方法被删除了,所以我不能只更新模板中的现有客户端,如果我创建一个新的httpclient对象,我将覆盖在应用程序引导期间设置的代理信息。
那么有什么方法可以从其余模板中提取httpClient并更新它吗?或者还有其他方法可以解决这个问题吗?
感谢。
答案 0 :(得分:4)
按如下方式配置httpClient
:
HttpHost target = new HttpHost("hostname", 80, "http");
CredentialsProvider credsProvider = new BasicCredentialsProvider();
credsProvider.setCredentials(
new AuthScope(target.getHostName(), target.getPort()),
new UsernamePasswordCredentials("user", "passwd"));
HttpHost proxy = new HttpHost("proxy", 12345);
CloseableHttpClient httpclient = HttpClients.custom()
.setProxy(proxy)
.setDefaultCredentialsProvider(credsProvider).build();
HttpComponentsClientHttpRequestFactory requestFactory = new HttpComponentsClientHttpRequestFactory();
requestFactory.setHttpClient(httpclient);
RestTemplate restTemplate = new RestTemplate(requestFactory);
答案 1 :(得分:0)
上述解决方案对我来说不起作用我解决了上述问题,并最终通过小修改使其工作。
RestTemplate restTemplate = new RestTemplate();
HttpHost proxy =null;
RequestConfig config=null;
String credentials = this.env.getProperty("uname") + ":" + this.env.getProperty("pwd");
String encodedAuthorization = Base64.getEncoder().encodeToString(credentials.getBytes());
Header header = new BasicHeader(HttpHeaders.AUTHORIZATION, "Basic " + encodedAuthorization);
List<Header> headers = new ArrayList<>();
headers.add(header);
if(Boolean.valueOf(env.getProperty("proxyFlag"))){
proxy = new HttpHost(this.env.getProperty("proxyHost"), Integer.parseInt(env.getProperty("proxyPort")), "http");
config= RequestConfig.custom().setProxy(proxy).build();
}else{
config= RequestConfig.custom().build();
}
CloseableHttpClient httpClient = HttpClientBuilder.create().setDefaultRequestConfig(config)
.setDefaultHeaders(headers).build();
HttpComponentsClientHttpRequestFactory factory = new HttpComponentsClientHttpRequestFactory(httpClient);
restTemplate.setRequestFactory(factory);
return restTemplate;