打印错误:Loading class `com.mysql.jdbc.Driver'. This is deprecated. The new driver class is `com.mysql.cj.jdbc.Driver'. The driver is automatically registered via the SPI and manual loading of the driver class is generally unnecessary
错误:Sat Apr 20 22:01:41 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.
java.sql.SQLException: The server time zone value '???ú±ê×??±??' is unrecognized or represents more than one time zone. You must configure either the server or JDBC driver (via the serverTimezone configuration property) to use a more specifc time zone value if you want to utilize time zone support.
Caused by: com.mysql.cj.exceptions.InvalidConnectionAttributeException: The server time zone value '???ú±ê×??±??' is unrecognized or represents more than one time zone. You must configure either the server or JDBC driver (via the serverTimezone configuration property) to use a more specifc time zone value if you want to utilize time zone support.
这是MySQL版本、JDBC驱动、驱动包名的问题
一、JDBC驱动包名,按照最新官方提示支持将com.mysql.jdbc.Driver 改为 com.mysql.cj.jdbc.Driver
二、MySQL数据库的url路径,时区配置问题
jdbc:mysql://localhost:3306/?characterEncoding=utf-8&serverTimezone=UTC
改正代码如下:
private static final String driverName = "com.mysql.cj.jdbc.Driver";
private static final String url = "jdbc:mysql://127.0.0.1:3310/?useUnicode=true&characterEncoding=utf8&serverTimezone=GMT";
private static final String account = "com";
private static final String password = "com";
Class.forName(driverName);
conn = DriverManager.getConnection(url, account, password);
另外,安装的MySQL默认端口是3306,如果安装的是MySQL router版或是什么,默认端口为3310,
还是得多看看个软件的配置问题,记下来,没办法,否则会邪门,烦死。。