JDBC连接Mysql出现警告

问题详情:
Wed Apr 15 16:40:14 CST 2020 WARN: Establishing SSL connection without server’s identity verification is not recommended. According to MySQL 5.5.45+, 5.6.26+ and 5.7.6+ requirements SSL connection must be established by default if explicit option isn’t set. For compliance with existing applications not using SSL the verifyServerCertificate property is set to ‘false’. You need either to explicitly disable SSL by setting useSSL=false, or set useSSL=true and provide truststore for server certificate verification.

Wed Apr 15 16:40:14 CST 2020警告:不建议在没有服务器身份验证的情况下建立SSL连接。根据MySQL 5.5.45 +,5.6.26 +和5.7.6+的要求,如果未设置显式选项,则默认情况下必须建立SSL连接。为了与不使用SSL的现有应用程序兼容,将verifyServerCertificate属性设置为’false’。您需要通过设置useSSL = false显式禁用SSL,或者设置useSSL = true并提供信任库以进行服务器证书验证。

出现原因:

使用的驱动版本与Mysql的版本不一致,Mysql5.5之后的版本对安全性的要求更高,默认采用的是SSL连接,而驱动在连接时并没有相关配置,所以会有警告提示,但并不影响使用。

解决方法:

connection=DriverManager.getConnection("jdbc:mysql:"+"//127.0.0.1:3306/runoot?useSSL=false", "root", "123456");

runoot为我的数据库名,在之后加上 ?useSSL=false 即可。

JDK 1.8
mysql 连接器 mysql-connector-java-5.1.39-bin.jar

猜你喜欢

转载自blog.csdn.net/weixin_46376562/article/details/105538517