create connection SQLException:The server time zone value 'Öйú±ê׼ʱ¼ä' is unrec

错误:
create connection SQLException:The server time zone value 'Öйú±ê׼ʱ¼ä' is unrec_第1张图片

create connection SQLException:The server time zone value 'Öйú±ê׼ʱ¼ä' is unrec_第2张图片

开始定位错误:
java.sql.SQLNonTransientConnectionException: Could not create connection to database server

一直以为是自己密码或者数据库驱动问题,后来检查发现都没有问题,然后继续向下看错误日志发现:Caused by: com.mysql.cj.exceptions.InvalidConnectionAttributeException: 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. at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) ~[na:1.8.0_101] at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62) ~[na:1.8.0_101] at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) ~[na:1.8.0_101] at java.lang.reflect.Constructor.newInstance(Constructor.java:423) ~[na:1.8.0_101]

问题解决(来自其他博客总结,原作者暂时未找到):
JDBC出现The server time zone value ‘Öйú±ê׼ʱ¼ä’ is unrec问题

后来查阅资料发现这都是因为安装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不会存在时区的问题。

2.解决办法

  1. 在jdbc连接的url后面加上serverTimezone=GMT
  2. 修改MySQL的配置文件,MySQL配置文件是my.ini文件在你的安装目录下去找,我的是在C:\Program Files (x86)\MySQL\MySQL Server 5.5\my.ini

找到这个文件之后用Notepad++打开它,搜索[mysqld]节点在节点下面加上下面这句话

default-time-zone=’+08:00’

然后记得重启MySQL的服务,打开cmd窗口登录MySQL执行show variables like ‘%time_zone%’;这句命令

  1. 直接在mysql执行语句:

set global time_zone=’+8:00’

你可能感兴趣的:(#,MySql)