The server time zone value ‘�й���׼ʱ��‘ is unrecognized or represents more than one time zone. You mu

报错信息

关于启动关于用jdbc操作数据库程序时发生以下报错 : 

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.

具体到 idea 中就是这样 : 

 解决 : 

本机的问题是由于数据库和系统时区差异所造成的,在MySQL8以上的驱动要求声明时区(我的mysql驱动是8.0.16版本)
在jdbc连接的url后面加上 serverTimezone=GMT 即可解决问题:
如 : 

String url = "jdbc:mysql://localhost:3306/pcm?serverTimezone=GMT";

这样之后就可以快乐的运行程序了!

你可能感兴趣的:(javaweb,mysql,数据库,mysql)