gpt4 book ai didi

java - 如何在java7中处理异常 "javax.net.ssl.SSLHandshakeException: Received fatal alert: handshake_failure"

转载 作者:太空宇宙 更新时间:2023-11-03 13:58:47 24 4
gpt4 key购买 nike

我在尝试了许多选项后发布了这个问题。以下是我尝试过的选项。1. 添加属性到{JAVA_HOME}/jre/lib/security/java.security security.provider.1=org.bouncycaSTLe.jce.provider.BouncyCaSTLeProvider

从下面的链接下载 jar 并添加到 {JAVA_HOME}/jre/lib/security http://www.oracle.com/technetwork/java/javase/downloads/jce-7-download-432124.html

2.添加java -Dhttps.protocols=TLSv1.2,TLSv1.1,TLSv1

3.添加System.setProperty("https.protocols", "TLSv1.2,TLSv1.1,SSLv3");连接前。

我仍然遇到这个问题,非常感谢任何帮助。

14:37:28,040 INFO  [STDOUT] SALM:login#TID:224#ST:2019-07-12 14:35:03.614, WRITE: TLSv1.2 Handshake, length = 227

14:37:28,311 INFO [STDOUT] SALM:login#TID:224#ST:2019-07-12 14:35:03.614, READ: TLSv1.2 Alert, length = 2

14:37:28,314 INFO [STDOUT] SALM:login#TID:224#ST:2019-07-12 14:35:03.614, RECV TLSv1 ALERT: fatal, handshake_failure

14:37:28,317 INFO [STDOUT] SALM:login#TID:224#ST:2019-07-12 14:35:03.614, called closeSocket()

14:37:28,319 INFO [STDOUT] SALM:login#TID:224#ST:2019-07-12 14:35:03.614, handling exception: javax.net.ssl.SSLHandshakeException: Received fatal alert: handshake_failure

14:37:32,023 FATAL [com.de.teamdynamics.webhelper.TeamDynamicHelper] CurrentThreadID=224 TeamDynamicHelper:processTeamDynamicsDataJob:Error - javax.net.ssl.SSLHandshakeException: Received fatal alert: handshake_failure
14:37:32,024 FATAL [com.de.base.util.general.WebUtil] CurrentThreadID=224 Exception===> Values ===>javax.net.ssl.SSLHandshakeException: Received fatal alert: handshake_failure
at sun.security.ssl.Alerts.getSSLException(Alerts.java:192)
at sun.security.ssl.Alerts.getSSLException(Alerts.java:154)
at sun.security.ssl.SSLSocketImpl.recvAlert(SSLSocketImpl.java:1979)
at sun.security.ssl.SSLSocketImpl.readRecord(SSLSocketImpl.java:1086)
at sun.security.ssl.SSLSocketImpl.performInitialHandshake(SSLSocketImpl.java:1332)
at sun.security.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.java:1359)
at sun.security.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.java:1343)
at sun.net.www.protocol.https.HttpsClient.afterConnect(HttpsClient.java:563)
at sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.connect(AbstractDelegateHttpsURLConnection.java:185)
at sun.net.www.protocol.http.HttpURLConnection.getOutputStream(HttpURLConnection.java:1092)
at sun.net.www.protocol.https.HttpsURLConnectionImpl.getOutputStream(HttpsURLConnectionImpl.java:250)
at com.de.teamdynamics.webhelper.TeamDynamicHelper.pushTeamDynamicsData(TeamDynamicHelper.java:1039)

最佳答案

这最终对我有用:

SSLContext context = SSLContext.getInstance("TLSv1.2");
context.init(null,null,null);
SSLContext.setDefault(context);

关于java - 如何在java7中处理异常 "javax.net.ssl.SSLHandshakeException: Received fatal alert: handshake_failure",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57007488/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com