java运行jdk连接mysql出现了:Establishing SSL connection without server's identity verification is not re

Posted 叮咚丶哈哈

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java运行jdk连接mysql出现了:Establishing SSL connection without server's identity verification is not re相关的知识,希望对你有一定的参考价值。


注意:出现这类提示也不会影响对数据库的增删改查操作,所以不用紧张。。


在运行练习时出现下面的错误信息提示:

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.

翻译过来就是:不建议不使用服务器身份验证建立SSL连接,必须默认建立SSL连接。



 

解决方案:在jdbc:mysql://localhost/table后面拼接?autoReconnect=true&useSSL=false
效果:
jdbc:mysql://localhost/table?autoReconnect=true&useSSL=false

然后重新运行一下,没有出现这类提示了。

 

以上是关于java运行jdk连接mysql出现了:Establishing SSL connection without server's identity verification is not re的主要内容,如果未能解决你的问题,请参考以下文章

我的java程序打包后双击运行会出现这样错误:java.lang.class.notfoundexception:com.mysql.jdbc.driver

java运行代码连接mysql时提示:找不到类错误

Java 连接 mysql 数据库 jdk14

Java连接MYSQL 数据库的连接步骤

java使用Mysql数据库要怎么配置?

2-22-实现jsp通过tomcat连接mysql