欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  数据库

IntelliJ IDEA 使用SVN时报错:Subversion: (Accessing URL: XXX

程序员文章站 2022-03-21 19:52:30
...

IntelliJ IDEA 在 使用 SVN时出现如下错误: Subversion: (Accessing URL: https://www.kdev.com/svn/repository/jhxt) SSLProtocolException: alert code: 112 alert name: alert_unrecognized_name, original message: handshake alert: unrecognized_name

IntelliJ IDEA 在使用SVN时出现如下错误:

Subversion: (Accessing URL: https://www.kdev.com/svn/repository/jhxt) SSLProtocolException: alert code: 112 alert name: alert_unrecognized_name, original message: handshake alert: unrecognized_name This may be JDK bug 7127374 : JSSE creates SSLProtocolException on (common) warning: unrecognized_name for SNI

在网搜索了一下没有找到好的解决方法,后来找到说需要设置JDK参数才能解决,具体方法是在idea的配置文件中添加如下配置:

……

-Djsse.enableSNIExtension=false

添加了红色部分的配置后就正常了。