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

本文介绍了解决使用JDBC连接MySQL时遇到的时区错误问题,提供了三种方法:通过SQL语句修改会话或全局时区,调整Java代码中的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服务即可
在这里插入图片描述

                                </div>
            <link href="https://csdnimg.cn/release/phoenix/mdeditor/markdown_views-b6c3c6d139.css" rel="stylesheet">
                                            <div class="more-toolbox">
            <div class="left-toolbox">
                <ul class="toolbox-list">
                    
                    <li class="tool-item tool-active is-like tool-clicked"><a href="javascript:;"><svg class="icon" aria-hidden="true">
                        <use xlink:href="#csdnc-thumbsup"></use>
                    </svg><span class="name">点赞</span>
                    <span class="count">4</span>
                    </a></li>
                    <li class="tool-item tool-active is-collection "><a href="javascript:;" data-report-click="{&quot;mod&quot;:&quot;popu_824&quot;}"><svg class="icon" aria-hidden="true">
                        <use xlink:href="#icon-csdnc-Collection-G"></use>
                    </svg><span class="name">收藏</span></a></li>
                    <li class="tool-item tool-active is-share"><a href="javascript:;" data-report-click="{&quot;mod&quot;:&quot;1582594662_002&quot;}"><svg class="icon" aria-hidden="true">
                        <use xlink:href="#icon-csdnc-fenxiang"></use>
                    </svg>分享</a></li>
                    <!--打赏开始-->
                                            <!--打赏结束-->
                                            <li class="tool-item tool-more">
                        <a>
                        <svg t="1575545411852" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="5717" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><defs><style type="text/css"></style></defs><path d="M179.176 499.222m-113.245 0a113.245 113.245 0 1 0 226.49 0 113.245 113.245 0 1 0-226.49 0Z" p-id="5718"></path><path d="M509.684 499.222m-113.245 0a113.245 113.245 0 1 0 226.49 0 113.245 113.245 0 1 0-226.49 0Z" p-id="5719"></path><path d="M846.175 499.222m-113.245 0a113.245 113.245 0 1 0 226.49 0 113.245 113.245 0 1 0-226.49 0Z" p-id="5720"></path></svg>
                        </a>
                        <ul class="more-box">
                            <li class="item"><a class="article-report">文章举报</a></li>
                        </ul>
                    </li>
                                        </ul>
            </div>
                        </div>
        <div class="person-messagebox">
            <div class="left-message"><a href="https://blog.youkuaiyun.com/weixin_44218204">
                <img src="https://profile.csdnimg.cn/4/C/8/3_weixin_44218204" class="avatar_pic" username="weixin_44218204">
                                        <img src="https://g.csdnimg.cn/static/user-reg-year/1x/1.png" class="user-years">
                                </a></div>
            <div class="middle-message">
                                    <div class="title"><span class="tit"><a href="https://blog.youkuaiyun.com/weixin_44218204" data-report-click="{&quot;mod&quot;:&quot;popu_379&quot;}" target="_blank">蘅时天下</a></span>
                                        </div>
                <div class="text"><span>发布了8 篇原创文章</span> · <span>获赞 42</span> · <span>访问量 4万+</span></div>
            </div>
                            <div class="right-message">
                                        <a href="https://im.youkuaiyun.com/im/main.html?userName=weixin_44218204" target="_blank" class="btn btn-sm btn-red-hollow bt-button personal-letter">私信
                    </a>
                                                        <a class="btn btn-sm  bt-button personal-watch" data-report-click="{&quot;mod&quot;:&quot;popu_379&quot;}">关注</a>
                                </div>
                        </div>
                </div>
</article>

转载的,方便以后用到。本人用的方法一可以解决此问题。

评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值