mysql错误:java.sql.SQLException: The server time zone value '�й���׼ʱ��' is unrecognized or represents

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后边加上  serverTimezone=UTC

url=jdbc:mysql://localhost:3306/doudizhu?serverTimezone=UTC

这个时区要设置好,不然会出现时差, 
如果你设置serverTimezone=UTC,连接不报错, 
但是我们在用java代码插入到数据库时间的时候却出现了问题。 
比如在java代码里面插入的时间为:2018-06-24 17:29:56 
但是在数据库里面显示的时间却为:2018-06-24 09:29:56 
有了8个小时的时差 
UTC代表的是全球标准时间 ,但是我们使用的时间是北京时区也就是东八区,领先UTC八个小时。

//北京时间东八区
serverTimezone=GMT%2B8 
//或者使用上海时间
serverTimezone=Asia/Shanghai

你可能感兴趣的:(mysql)