解决:Server returns invalid timezone. Go to 'Advanced' tab and set 'serverTimezone' property manually.
第一次用IDEA连接MySQL的时候,出现上面这个错误
意思是:服务器返回无效时区。 去'Advanced'选项卡并设置'serverTimezone'属性手动。
第一种办法:在Advanced
中手动设置时区
在Advanced
中找到serverTimezone
,在value填入Asia/Shanghai
第二种:在MySQL中设置时区
在mysql中输入set global time_zone='+8:00';
退出,并重新登录mysql,输入show variables like '%time_zone';
查看