欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Idea连接Datasource时报时区错误的解决方法Server returns invalid timezone. Go to 'Advanced' tab and set 'serverTime

程序员文章站 2022-04-04 23:24:37
...

1.问题

当使用Idea中的Datasource工具连接mysql数据库出现

Server returns invalid timezone. Go to 'Advanced' tab and set 'serverTimezone' property

2.解决方法

直接在数据库url连接中加上时区的设定“?serverTimezone=GMT”即可搞定

jdbc:mysql://localhost:3306/test?serverTimezone=GMT

Idea连接Datasource时报时区错误的解决方法Server returns invalid timezone. Go to 'Advanced' tab and set 'serverTime