- mongodb - 在 MongoDB mapreduce 中,如何展平值对象?
- javascript - 对象传播与 Object.assign
- html - 输入类型 ="submit"Vs 按钮标签它们可以互换吗?
- sql - 使用 MongoDB 而不是 MS SQL Server 的优缺点
谁能指导我如何配置 HttpComponentsClientHttpRequestFactory
以使用代理服务器。
我看到的所有示例都使用 SimpleClientHttpRequestFactory
。
最佳答案
如果您不介意使用 Apache Http Client,它不是很复杂,有两种可能性:
如果所有目标的单一代理对您来说就足够了:
HttpComponentsClientHttpRequestFactory clientHttpRequestFactory
= new HttpComponentsClientHttpRequestFactory(
HttpClientBuilder.create()
.setProxy(new HttpHost("myproxy.com", 80, "http"))
.build());
restTemplate = new RestTemplate(clientHttpRequestFactory);
或者,如果您想为不同的目标 URI、模式等使用不同的代理,您可以使用 HttpRoutePlanner
和自定义 ProxySelector
:
HttpRoutePlanner routePlanner = new SystemDefaultRoutePlanner(new MyProxySelector());
HttpComponentsClientHttpRequestFactory clientHttpRequestFactory
= new HttpComponentsClientHttpRequestFactory(
HttpClientBuilder.create()
.setRoutePlanner(routePlanner)
.build());
restTemplate = new RestTemplate(clientHttpRequestFactory);
示例代理选择器:MyProxySelector.java
:
package hello;
import java.io.IOException;
import java.net.InetSocketAddress;
import java.net.Proxy;
import java.net.Proxy.Type;
import java.net.ProxySelector;
import java.net.SocketAddress;
import java.net.URI;
import java.util.ArrayList;
import java.util.List;
public class MyProxySelector extends ProxySelector {
ProxySelector defaultproxySelector = ProxySelector.getDefault();
ArrayList<Proxy> noProxy = new ArrayList<Proxy>();
ArrayList<Proxy> secureProxy = new ArrayList<Proxy>();
ArrayList<Proxy> sociaMediaProxy = new ArrayList<Proxy>();
public MyProxySelector(){
noProxy.add(Proxy.NO_PROXY);
secureProxy.add(new Proxy(Type.HTTP, new InetSocketAddress(
"secure.proxy.mycompany.com", 8080)));
sociaMediaProxy.add(new Proxy(Type.HTTP, new InetSocketAddress(
"social-media.proxy.mycompany.com", 8080)));
}
@Override
public List<Proxy> select(URI uri) {
// No proxy for local company addresses.
if ( uri.getHost().toLowerCase().endsWith("mycompany.com") ) {
return noProxy ;
}
// Special proxy for social networks.
String host = uri.getHost().toLowerCase();
if ( host.endsWith("facebook.com") ||
host.endsWith("twitter.com") ||
host.endsWith("cfapps.io") ||
host.endsWith("flickr.com") )
{
return sociaMediaProxy ;
}
// for https URIs use secureProxy
if ( uri.getScheme().toLowerCase().equals("https") ){
return secureProxy ;
}
if (defaultproxySelector != null) {
return defaultproxySelector.select(uri);
}
return noProxy;
}
@Override
public void connectFailed(URI arg0, SocketAddress arg1, IOException arg2) {
// TODO Auto-generated method stub
}
}
关于spring - 将代理与 HttpComponentsClientHttpRequestFactory 和 RestTemplate 一起使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34319679/
我能否让多个线程使用 HttpComponentsClientHttpRequestFactory 的同一个静态实例来安全地创建它们各自的 ClientHttpRequest? 我找不到任何能告诉我答
我正在使用 RestTemplate及其工厂HttpComponentsClientHttpRequestFactory在我的一个项目中。在这个项目中,我需要对运行 restful 服务的服务器进行
谁能指导我如何配置 HttpComponentsClientHttpRequestFactory 以使用代理服务器。 我看到的所有示例都使用 SimpleClientHttpRequestFactor
我正在尝试在 Spring 中设置 httpClient5 ...我有以下代码: PoolingHttpClientConnectionManager connectionManager = Pool
我需要在所有 RestTemplate 客户端请求中添加一个自定义 header 。所以我实现了 ClientHttpRequestInterceptor。然后我在我的 RestTemplateBui
我正在开发一个项目,我需要对运行 Restful 服务的服务器进行 HTTP URL 调用,该服务以 JSON 字符串 形式返回响应。 下面是我使用 future 和 callables 的主要代码:
我是一名优秀的程序员,十分优秀!