使用最新版本MySQL8.0.12报错记录

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/xinxin19881112/article/details/83044094

使用最新版本MySQL报错,MySQL版本8.0.12。

报错1:

Sun Oct 14 00:45:30 CST 2018 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.
不建议在没有服务器身份验证的情况下建立SSL连接。根据MySQL 5.5.45+,5.6.26+和5.7.6+的SSL连接要求,如果未设置连接方式,则默认情况下必须建立SSL连接。对于不使用SSL的现有应用程序,服务器的验证证书属性设置为“false”。您需要通过设置useSSL=false来显式禁用SSL,或者设置useSSL=true并提供服务器的验证证书。

解决方法:
1、数据库URL连接地址添加useSSL=false,适用于测试。
2、数据库URL连接地址添加useSSL=true,并且提供服务器的验证证书。

jdbc.url=jdbc:mysql://127.0.0.1:3306/demo?useUnicode=true&characterEncoding=utf-8&serverTimezone=GMT&useSSL=false

报错2

2018-10-14 00:45:30,876 ERROR [DruidDataSource.java:616] : init datasource error
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.
服务器时区值“????±××?±?无法识别或代表一个以上的时区。如果希望利用时区支持,则必须配置服务器或JDBC驱动程序(通过serverTimezone配置属性)以使用更具体的时区值。

解决方法:
使用的MySQL数据库版本8.0.12,数据库连接驱动是8.0.12。
由于数据库和系统时区差异造成报错,需要在数据库URL连接地址后面加上serverTimezone=GMT。
如果需要使用gmt+8时区,需要写成GMT%2B8,否则会被解析为空。

<dependency>
    <groupId>mysql</groupId>
    <artifactId>mysql-connector-java</artifactId>
    <version>8.0.12</version>
</dependency>
jdbc.url=jdbc:mysql://127.0.0.1:3306/demo?useUnicode=true&characterEncoding=utf-8&serverTimezone=GMT&useSSL=false

报错3:

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.
不建议使用驱动类'com.mysql.jdbc.Driver'。新的驱动程序类是'com.mysql.cj.jdbc.Driver',驱动程序是通过SPI自动注册的,通常是不需要手动加载驱动类。

解决方法:
MySQL数据库8.0.12使用的驱动类为com.mysql.cj.jdbc.Driver,不要使用旧的驱动类。

jdbc.driverClass=com.mysql.cj.jdbc.Driver

猜你喜欢

转载自blog.csdn.net/xinxin19881112/article/details/83044094