Java MySQL连接问题

jar包

connector 8.0.20.jar

最新版下载地址:http://dev.mysql.com/downloads/connector/j/

MySQL以上版本的数据库连接的不同

1.MySQL 8.0以上版本驱动包版本为mysql-connector-java-8.0.16.jar

2.com.mysql.jdbc.Driver更换为com.mysql.cj.jdbc.Driver

3.MySQL 8.0 以上版本不需要建立SSL连接的,需要显示关闭

4.allowPublicKeyRetrieval=true 允许客户端从服务器获取共公钥

5.最后还需要设置CST

原文地址:https://www.cnblogs.com/lmygq1728/p/14160893.html