java.sql.SQLException: The server time zone value 'Öйú±ê׼ʱ¼ä' is unrecognized

在用spring boot的时候一直报

com.mysql.cj.exceptions.InvalidConnectionAttributeException: The server time zone value 'Öйú±ê׼ʱ¼ä' is unrecognized or represents more than one time zone.

这个错误
错误原因:Mysql和本地时区不同所导致的。
这问题也是再使用了Mysql 8.0+ 的版本才出现的
只需要修改一下配置文件即可

原来:
jdbc:mysql://localhost:3306/yd
修改后:
jdbc:mysql://localhost:3306/yd?serverTimezone=GMT%2B8

GMT%2B8也就是GMT+8 表示东八区的意思

当然也可以修改pom文件,使用低版本5.*

你可能感兴趣的:(Mysql)