Mysql连接时出现:The server time zone value 'Öйú±ê׼ʱ¼ä' is unrecognized or represents more than的错误

Mysql连接时出现:The server time zone value 'Öйú±ê׼ʱ¼ä' is unrecognized or represents more than的错误

1.未指定serverTimezone

jdbc:mysql://localhost:3306/student 

所以出现了

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.

 

2.解决方案

     看了很多帖子直接加?serverTimezone=UTC

  

jdbc:mysql://localhost:3306/student?serverTimezone=UTC ?serverTimezone=UTC

虽然上面加上时区程序不出错了,但是我们在用java代码插入到数据库时间的时候却出现了时差

java代码里面插入的时间为:2019-03-26 17:29:56

数据库里面显示的时间却为:2019-03-26 09:29:56

原因是时区的问题  

 

UTC代表的是全球标准时间 ,但是我们使用的时间是北京时区也就是东八区,领先UTC八个小时。

所以应该调整时区

url的时区使用中国标准时间。也是就serverTimezone=Asia/Shanghai 

 jdbc:mysql://localhost:3306/student?serverTimezone=Asia/Shanghai 

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