Idea中使用jdbc报错:Wed Mar 21 09:28:33 CST 2018 WARN: Establishing SSL connection without server's id
Posted 遍唱阳春
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Idea中使用jdbc报错:Wed Mar 21 09:28:33 CST 2018 WARN: Establishing SSL connection without server's id相关的知识,希望对你有一定的参考价值。
报错提示:
Sat Oct 21 09:28:33 CST 2019 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.
报错翻译:
12月21日星期六09:28:33 CST 2019警告:没有服务器的身份验证建立SSL连接,不推荐。根据MySQL 5.5.45 +,+,+ 5.6.26 5.7.6要求SSL连接必须建立明确的选项默认情况下如果不设置。符合现有的应用程序不使用SSL的verifyservercertificate属性设置为“false”。你需要显式禁用SSL设置usessl = false,或设置usessl =真实提供服务器证书验证信任库。
解决方法:
在jdbc.properties配置文件中将url的内容添加一句话:useSSL=false
url=jdbc:mysql://localhost:3306/db3?useUnicode=true&characterEncoding=UTF-8&useSSL=false
以上是关于Idea中使用jdbc报错:Wed Mar 21 09:28:33 CST 2018 WARN: Establishing SSL connection without server's id的主要内容,如果未能解决你的问题,请参考以下文章
在 intellij idea 中使用 JDBC/Mysql 连接器
mybatis配置,idea报错:java.sql.SQLException: No suitable driver found for jdbc://localhost:3306/mybatis_t
错误记录Mac 中 IntelliJ IDEA 运行 Python 程序报错 ( pip 21.0 will drop support for Python 2.7 in January 20 )(代
重装系统,新安装IDEA启动项目后,classnotfound:com.mysql.jdbc.Driver
Idea运行web项目时,提示java.lang.ClassNotFoundException: com.mysql.jdbc.Driver解决方法