JDBC连接mysql出现时区错误:The server time zone value ‘Öйú±ê׼ʱ¼ä‘ is unrecognized...处理方法

本文介绍了解决使用JDBC连接MySQL时遇到的时区错误的方法,包括临时更改会话时区、永久修改全局时区配置、调整URL参数及编辑my.ini文件等步骤。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

用jdbc连接mysql时报下图错误处理方法。
图中报错全文: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.
报错全文: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:00”.

方法一:
首先打开cmd登录mysql后输入select curtime();或select now();查看当前时间
在这里插入图片描述
然后查看当前时区(show variables like “%time_zone%”)
在这里插入图片描述
system_time_zone 为空表示当前mysql时间与系统一致,time_zone为SYSTEM表示当前使用的时区为SYSTEM时区

最后将时区更改为现在所在时区(东八区)
<1>set time_zone="+8:00"; 只能修改当前会话窗口的时区,关闭即还原
在这里插入图片描述
<2>set global time_zone="+8:00"; 修改全局时区,永久有效
在这里插入图片描述
方法二:
在自己编写的java代码连接mysql语句的url后面添加?useSSL=true&serverTimezone=UTC即可解决该代码报错问题
在这里插入图片描述
方法三:
找到mysql的安装路径,然后在MySQL Server 5.5里面找到my.ini
在这里插入图片描述
打开my.ini,找到mysqld,在mysqld下面输入default-time-zone = '+8:00’点击保存,最后重启mysql服务即可
在这里插入图片描述

评论 8
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值