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

Springboot 项目启动后运行报错

安楠大叔

  • 说实话,在我们做项目的时候,肯定会遇到各种各样的错误,遇到问题我们不要慌,因为这是很正常的,不写Bug的程序员不是号程序员,哈哈,调侃一下
  • 遇到问题我们解决问题,一步一步来看

项目启动正常

java.sql.SQLException: The server time zone value 'Öйú±ê׼ʱ¼ä' is unrecognized or represents more_第1张图片

调用接口——报错

java.sql.SQLException: The server time zone value 'Öйú±ê׼ʱ¼ä' is unrecognized or represents more_第2张图片

后台报错

java.sql.SQLException: The server time zone value 'Öйú±ê׼ʱ¼ä' is unrecognized or represents more_第3张图片

错误点

java.sql.SQLException: 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.
  • 这个错误是因为时区错误,对的,因为我们是在东八区,所以在配置文件里面,将连接数据库的地方添加
?serverTimezone=GMT%2B8
  • 添加完成之后是这样的
 url: jdbc:mysql://127.0.0.1:3306/sao?serverTimezone=GMT%2B8

然后我们再次启动项目并且调用项目

-java.sql.SQLException: The server time zone value 'Öйú±ê׼ʱ¼ä' is unrecognized or represents more_第4张图片

请求成功

  • 看到我们请求成功,那就说明我们的项目是没有问题的,只是因为时区,所以我们在遇到没有遇到的问题的时候,我们要积极的找寻错误原因是什么

大家加油啦——相信你们是最棒的,安楠大叔一直在这里等你凯旋归来

你可能感兴趣的:(Springboot)