Mybatis运行项目时差错误: The server time zone value ‘�й���׼ʱ��‘ is unrecognized or...(二)

Cause: 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 specific time zone value if you want to utilize time zone support.
在上一篇中我们提到了连接数据库的时区报错异常以及解决方法,那么我们再来说一个因为mysql数据库版本造成的另一个时差问题。

Mybatis运行项目时差错误: The server time zone value ‘�й���׼ʱ��‘ is unrecognized or...(二)

为什么已经给serverTimezone属性设置了UTC,还会报错呢?

时区设置的问题。

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

虽然给serverTimezone属性设置了UTC数据库连接不出错了,但是当我们往数据库里面添加数据时却出了错。

当使用的mysql数据库版本过高时(8以上),除了需要在url后面添加useSSL=true或者false之外(保障Internet数据传输安全利用数据加密),还需要在后面加上serverTimezone=CTT或GMT。

Mybatis运行项目时差错误: The server time zone value ‘�й���׼ʱ��‘ is unrecognized or...(二)

 喜欢就要坚持下去!

 

上一篇:MySQL8.0时区设置


下一篇:idea连接MySQL时区错误