连接数据库时报:java.sql.SQLException: The server time zone value '�й���׼ʱ��' is unrecognized ......

在使用springboot框架连接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.

连接数据库时报:java.sql.SQLException: The server time zone value '�й���׼ʱ��' is unrecognized ......_第1张图片

经过百度一下才知道是时区错误。原因是因为MySql服务采用的是国际标准时间,与内地相差8个小时,所以需要在连接MySql服务在原来的连接基础上加上

serverTimezone=UTC

即:

spring.datasource.url=jdbc:mysql://localhost:3306/jdbc?serverTimezone=UTC&useUnicode=true&characterEncoding=utf-8&allowMultiQueries=true

此处的UTC是全球标准时间。
或者直接使用CTT(中国沿海时间同北京时间),也可以消除8小时的时差。即:

spring.datasource.url=jdbc:mysql://localhost:3306/jdbc?serverTimezone=CTT&useUnicode=true&characterEncoding=utf-8&allowMultiQueries=true


这样就可以消除上述错误了!!!
连接数据库时报:java.sql.SQLException: The server time zone value '�й���׼ʱ��' is unrecognized ......_第2张图片


 

你可能感兴趣的:(springboot,时区)