java.sql.SQLException: The server time zone value ‘�й���׼ʱ��‘ is unrecognized or represents more ...

问题描述

今天使用Spring-boot配置好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的时候时区设置的不正确 mysql默认的是美国的时区,而我们中国大陆要比他们迟8小时,采用+8:00格式

  • 使用的数据库是MySQL,在SpringBoot2.1在你没有指定MySQL驱动版本的情况下它自动依赖的驱动是8.0.12很高的版本,这是由于数据库和系统时区差异所造成的,在jdbc连接的url后面加上serverTimezone=GMT即可解决问题,如果需要使用gmt+8时区,需要写成GMT%2B8,否则会被解析为空。

  • 再一个解决办法就是使用低版本的MySQL jdbc驱动,5.1.28不会存在时区的问题。

解决办法

在配置数据库URL后面加上serverTimezone=GMT%2B8

url: jdbc:mysql://127.0.0.1:3306/lucykmoney?serverTimezone=GMT%2B8

注意:别忽略 ?

你可能感兴趣的:(Java)