com.mysql.cj.exceptions.InvalidConnectionAttributeException: The server time zone value 'Öйú±ê׼ʱ

在调用接口的时候报了一个这样的错:
错误信息:com.mysql.cj.exceptions.InvalidConnectionAttributeException: The server time zone value 'Öйú±ê׼ʱ_第1张图片
这个错误很明显链接不上你的数据库
通过:serverTimezone=Asia/Shanghai 可以解决
如果你设置为serverTimezone=UTC 就会出现数据库时间和查询时间相差8小时

spring.datasource.url=jdbc:mysql://localhost:3310/demo?useSSL=false&useUnicode=true&characterEncoding=utf-8&zeroDateTimeBehavior=convertToNull&transformedBitIsBoolean=true&autoReconnect=true&failOverReadOnly=false&serverTimezone=Asia/Shanghai 

你可能感兴趣的:(com.mysql.cj.exceptions.InvalidConnectionAttributeException: The server time zone value 'Öйú±ê׼ʱ)