springboot连接mysql时出现的错误
Posted olzoooo
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot连接mysql时出现的错误相关的知识,希望对你有一定的参考价值。
出现的错误: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 propert
通过这里可以看出来需要配置serverTimezone,所以就配置一下
在application.yml数据源配置中url后面加上如下修改:
url: jdbc:mysql://127.0.0.1:3306/seckill?serverTimezone=UTC
以上是关于springboot连接mysql时出现的错误的主要内容,如果未能解决你的问题,请参考以下文章