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.
解决方案一:
url: jdbc:mysql://localhost:3306/demo?serverTimezone=GMT
解决方案二:
在MySQL安装目录中修改my.ini配置文件
添加 default-time-zone='+08:00'
重启MySQL服务
解决方案三:
mysql> show variables like ‘%time_zone%’;
+——————+——–+
| Variable_name | Value |
+——————+——–+
| system_time_zone | |
| time_zone | SYSTEM |
+——————+——–+
mysql> set global time_zone = ‘+8:00’;
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/137172.html