idea与eclipse在链接MySQL数据库时,通常会产生如下的报错代码
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.
该错误是由于MySQL的默认时区为UTC,该时区比北京时间晚8小时,所以应该将MySQL默认时间加8小时。
下面代码用于查看MySQL默认时区
show variables like '%time_zone%';
对于时区问题有二种解决办法
- 直接在MySQL中更改时区,但是该方法每次电脑重启就会失效,下次使用还需重新运行代码
set global time_zone='+8:00';
- 由于eclipse没有自带的数据库链接功能,idea有自带的链接数据库功能,所以这里该方法只适用于idea
点开Database
右键已经建好的数据库,点击Properties
点击最右侧Advanced
找到Name为serverTimezone,将后面的Value改为GMT
点击Apply点击OK