java.io.EOFException: SSL peer shut down incorrectly
时间: 2023-11-03 12:22:20 浏览: 241
java.io.EOFException: SSL peer shut down incorrectly是一种异常,通常在使用HttpClient通过https从外部系统获取数据时出现。这种异常通常是由于客户端和服务端支持的https协议版本不一致引起的。在JDK中,不同版本的JDK对HTTPS协议的支持情况是不同的。例如,JDK 6只支持SSL v3和TLS v1,而JDK 7和JDK 8则支持更多的协议版本,包括TLS v1.1和TLS v1.2。因此,如果使用的JDK版本不支持服务端所使用的协议版本,就有可能导致SSL peer shut down incorrectly异常的出现。解决此问题的方法是确保客户端和服务端支持的https协议版本一致。可以通过升级JDK版本或者配置JDK的安全参数来解决此问题。具体的解决方法可以参考引用和引用中提供的内容。<span class="em">1</span><span class="em">2</span><span class="em">3</span>
#### 引用[.reference_title]
- *1* *3* [java.io.EOFException: SSL peer shut down incorrectly jdk1.8不支持TSLv1.3问题解决](https://blog.csdn.net/weixin_41020185/article/details/128590031)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_1"}}] [.reference_item style="max-width: 50%"]
- *2* [SSL peer shut down incorrectly](https://blog.csdn.net/weixin_44385360/article/details/129155861)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_1"}}] [.reference_item style="max-width: 50%"]
[ .reference_list ]
阅读全文