SpringBoot连接mysql时报The server time zone value '�й���׼ʱ��' is unrecognized or represents more than on - Go语言中文社区

SpringBoot连接mysql时报The server time zone value '�й���׼ʱ��' is unrecognized or represents more than on


今天使用SpringBoot连接Mysql时报出了错误: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.
检查了半天也没有发现配置有问题,但是网页一直都是500,
在这里插入图片描述
后来上网查阅发现是application.properties中数据库的配置信息少了点东西,
在spring.datasource.url配置的最后面添加&serverTimezone=GMT%2B8即可解决问题。

spring.datasource.username=root
spring.datasource.password=root
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
spring.datasource.url=jdbc:mysql://localhost:3306/users?useUnicode=true&characterEncoding=utf-8&useSSL=false&serverTimezone=GMT%2B8

字面意思理解可能就是配置时区的问题

版权声明:本文来源CSDN,感谢博主原创文章,遵循 CC 4.0 by-sa 版权协议,转载请附上原文出处链接和本声明。
原文链接:https://blog.csdn.net/weixin_44298615/article/details/103943512
站方申明:本站部分内容来自社区用户分享,若涉及侵权,请联系站方删除。
  • 发表于 2020-04-19 03:50:44
  • 阅读 ( 1121 )
  • 分类:数据库

0 条评论

请先 登录 后评论

官方社群

GO教程

猜你喜欢