添加mysql依赖异常

在spring+mybatis项目中,在pom.xml添加一下依赖后

mysql

mysql-connector-java

8.0.11

 

出现如下错误:

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依赖异常_第1张图片

 

这是系统时间错误。这是在使用MySQL 8.0以上版本(MySQL连接驱动和版本都是8.0以上)的时候出现的问题错误,我们需要在访问数据库的Url后面加上以下的语句即可:

jdbc:mysql://localhost:3306/yd?serverTimezone=GMT%2B8

 

 

你可能感兴趣的:(异常笔记)