我在Spring bean配置文件中添加了以下代码:
<bean id="restTemplate" class="org.springframework.web.client.RestTemplate">
<constructor-arg ref="httpComponentsClientHttpRequestFactory"/>
</bean>
在代码中,我们使用以下代码来调用服务:
restTemplate.getForObject("https://xxxxx", ProductList.class);
我们收到错误:SSLHandShakeException ::握手期间远程主机关闭连接。
您能告诉我如何在上面的代码Spring rest模板中配置https证书和证书密码。目前,我们正在项目中使用Spring 4.0。
提前致谢!