01S00 无效连接字符串特性 SQLException: The server time zone value '�й���׼ʱ��' is unrecognized

SQLException: The server time zone value '�й���׼ʱ��' is unrecognized


在配置datasource.url时不能简单的这样配:

spring.datasource.url=jdbc:mysql://localhost:3306/chat
  • 1

需要加上一些必要的后缀信息(改成下面的配置就可以了):

spring.datasource.url=jdbc:mysql://localhost:3306/chat?useUnicode=true&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=UTC

猜你喜欢

转载自blog.csdn.net/chinafire525/article/details/80083226