我有以下错误,loadODataResources失败。
org.apache.olingo.client.api.http.HttpClientException: javax.net.ssl.SSLHandshakeException: Remote host closed connection during handshake 发布于 2018-07-24 14:34:35
该错误似乎与SSL连接握手有关。通常,我会使用环境变量来定制SSLContext。在您的情况下,"https.protocols“可能会有所帮助,例如:
System.setProperty("https.protocols", "TLSv1,TLSv1.1,TLSv1.2");有关更多详细信息,请参阅以下参考:
https://stackoverflow.com/questions/50170906
复制相似问题