使用restTemplate在请求https接口的时候不通,使用方法:
import org.springframework.web.client.RestTemplate;
......
ResponseEntity<String> response = restTempLate.exchange(urlAppender.toString(), HttpMethod.POST, request, String.class);
报错信息:
Caused by: javax.net.ssl.SSLException: SSL peer shut down incorrectly
服务器:Windows server 2012
证书:请忽略https证书问题
curl https://ip:port 不通
防火墙中已经开放相关的端口和IP
服务器端支持的https协议有:
System.setProperty("https.protocols", "TLSv1,TLSv1.1,TLSv1.2,SSLv3");
在服务器本地curlhttps://ip:port,看看https服务本身是否有问题?
privatestaticRestTemplaterestTemplate()throwsKeyManagementException,NoSuchAlgorithmException,KeyStoreException{
TrustStrategyacceptingTrustStrategy=newTrustSelfSignedStrategy();
SSLContextsslContext=org.apache.http.ssl.SSLContexts.custom().loadTrustMaterial(null,acceptingTrustStrategy)
.build();
SSLConnectionSocketFactorycsf=newSSLConnectionSocketFactory(sslContext,NoopHostnameVerifier.INSTANCE);
CloseableHttpClienthttpClient=HttpClients.custom().setSSLSocketFactory(csf).build();
HttpComponentsClientHttpRequestFactoryrequestFactory=newHttpComponentsClientHttpRequestFactory();
requestFactory.setHttpClient(httpClient);
RestTemplaterestTemplate=newRestTemplate(requestFactory);
returnrestTemplate;
}
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。