连接MySql出现异常解决:java.sql.SQLException: The server time zone value is unrecognized or represents。

QUESTION:

连接MySql出现异常解决:java.sql.SQLException: The server time zone value is unrecognized or represents。_第1张图片

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.

 

ANSWER:

一:原因

博主在刚开始学习SpringBoot的时候,整合mybatis框架使用MySql数据库配置时出现以上问题,经过查阅资料,找到解决方案,

原因是因为使用了Mysql Connector/J 6.x以上的版本,然后就报了时区的错误

遇到的问题 servertime=UTC导致时间差8个小时

二:解决方法

在配置mysql的URL加上时区:

serverTimezone=UTC
spring.datasource.url=jdbc:mysql://127.0.0.1:3306/springboot?useUnicode=true&characterEncoding=utf8&serverTimezone=UTC

虽然上面加上时区程序不出错了,但是我们在用java代码插入到数据库时间的时候却出现了问题。

因为时区设置的问题。
UTC代表的是全球标准时间 ,但是我们使用的时间是北京时区也就是东八区,领先UTC八个小时。

UTC + (+0800) = 本地(北京)时间。

将时区改成中国标准时间:

serverTimezone=Asia/Shanghai

 

你可能感兴趣的:(SSM,SpringBoot,MySqL)