当前位置:   article > 正文

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

连接数据库时报: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.

经过百度一下才知道是时区错误。原因是因为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


这样就可以消除上述错误了!!!


 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Cpp五条/article/detail/505762
推荐阅读
相关标签
  

闽ICP备14008679号