新手第一次用IDEA连接数据库, 报了如下错误+警告:
com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: Could not create connection to database server.
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.
解决办法:
Connection connection = DriverManager.getConnection(“jdbc:mysql://localhost:3306/库名?serverTimezone=GMT%2B8&useSSL=false”, “用户名”, “密码”);
其中最终要的就是:
1. serverTimezone: 解决错误
2. useSSL: 解决警告
本文解决IDEA环境下使用MySQL数据库时遇到的连接错误与SSL警告,提供正确的连接字符串设置方法,包括serverTimezone与时区参数,及useSSL属性的正确配置。
2307

被折叠的 条评论
为什么被折叠?



