java.sql.SQLNonTransientConnectionException: Public Key Retrieval is not allowed的解决

java.sql.SQLNonTransientConnectionException: Public Key Retrieval is not allowed的解决

码农世界 2024-06-05 后端 90 次浏览 0个评论

一、异常的产生

java.sql.SQLNonTransientConnectionException:

Public Key Retrieval is not allowed   表明正在使用的 JDBC 驱动在尝试建立数据库连接时,无法通过公钥检索方式获取服务器的SSL证书。通常发生在MySQL8等高版本上

二、解决

配置数据库信息

1.url配置了SSL

2.url中添加 allowPublicKeyRetrieval=true

    url: jdbc:mysql://localhost:3306/study?useSSL=false&serverTimezone=UTC&allowPublicKeyRetrieval=true

转载请注明来自码农世界,本文标题:《java.sql.SQLNonTransientConnectionException: Public Key Retrieval is not allowed的解决》

百度分享代码,如果开启HTTPS请参考李洋个人博客
每一天,每一秒,你所做的决定都会改变你的人生!

发表评论

快捷回复:

评论列表 (暂无评论,90人围观)参与讨论

还没有评论,来说两句吧...

Top