美好的一天,
我正在使用SimpleClientHttpRequestFactory
进行休息电话。以下是我的代码的一部分:
SimpleClientHttpRequestFactory requestFactory = new SimpleClientHttpRequestFactory( );
Proxy proxy = new Proxy( Type.HTTP, new InetSocketAddress(
proxyServerIP, proxyServerPort ) );
requestFactory.setProxy( proxy );
restTemplate = new RestTemplate( requestFactory );
现在,我想将协议设置为TLSv1.2
。我一直在尝试,但仍然无法正确获取代码。有人可以给我一些提示吗?例如,我应该使用哪个HttpClient
,或者我应该使用哪个ClientHttpRequestFactory
。
我应该为此更改我的ClientHttpRequestFactory
吗?
仅供参考,我使用的是Spring 3.0.x。