评论

收藏

[Java] 解决Mybatis的serverTimezone时区出现问题

编程语言 编程语言 发布于:2022-01-05 20:20 | 阅读数:529 | 评论:0

这篇文章主要介绍了解决Mybatis的serverTimezone时区出现问题,具有很好的参考价值,希望对大家有所帮助。如有错误或未考虑完全的地方,望不吝赐教
目录

  • Mybatis serverTimezone时区出现问题

    • 错误信息
    • 出现原因
    • 解决

  • Mybatis 插件碰到的时区问题及用法

Mybatis serverTimezone时区出现问题

错误信息
我们可以定位错误信息The server time zone value 'Öйú±ê׼ʱ¼ä' is,
则说明了是serverTimezone时区的问题
org.apache.ibatis.exceptions.PersistenceException:
### Error querying database. Cause: 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.
### The error may exist in com/chun/dao/UserMapper.xml
### The error may involve com.chun.dao.UserMapper.getUserList
### The error occurred while executing a query
### Cause: java.sql.SQLException: The server time zone value 'Öйú±ê׼ʱ¼ä' is unrecognized or represents more than one time
出现原因
因为MySQL版本号是8.0以上,需要设置serverTimezone,useSSL等参数

解决
在mybatis-config.xml文件中的property name="url"在后面添加
&serverTimezone=Asia/Shanghai"  //注意Shanghai是开头大写
或者
&serverTimezone=GMT%2B8
Mybatis 插件碰到的时区问题及用法
DSC0000.jpg

连接数据库mysql -hlocalhost -uroot -p,回车,输入密码,回车,
DSC0001.jpg

show variables like'%time_zone'; (注意不要漏掉后面的分号),回车
DSC0002.png

设置时区 set time_zone = '+8:00';
DSC0003.png

DSC0004.jpg

DSC0005.jpg

DSC0006.jpg

DSC0007.jpg

DSC0008.jpg

DSC0009.jpg

以上为个人经验,希望能给大家一个参考,也希望大家多多支持CodeAE代码之家
原文链接:https://blog.csdn.net/qq_42567023/article/details/104958771

关注下面的标签,发现更多相似文章