连接MySql报错(时区错误)--->The server time zone value ‘xxx‘ is unrecognized or represents more t...

在使用SpringBoot创建并启动项目时,出现的一个SqlSQLException。经查验,该问题是MySql本身的时区设置的问题导致的。完整的异常信息如下:

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安装默认设置为美国时区,而北京时间比美国迟8小时。解决方法也很简单:

解决方法一:&serverTimezone=GMT
在这里插入图片描述
解决方法二:default-time-zone=’+08:00’
找到mysql的my.ini文件。
在[mysqld]下方添加:default-time-zone=’+08:00’。(注意引号)
在这里插入图片描述

修改后,计算机-管理-服务-重启mysql服务
在这里插入图片描述
解决。

Supongo que te gusta

Origin blog.csdn.net/sq_ikk/article/details/112775227
Recomendado
Clasificación