今天小编给大家分享一下springboot数据库查询时出现时区差异问题怎么解决的相关知识点,内容详细,逻辑清晰,相信大部分人都还太了解这方面的知识,所以分享这篇文章给大家参考一下,希望大家阅读完这篇文章后有所收获,下面我们一起来了解一下吧。
springboot数据库查询时出现的时区差异
最近项目中使用到多数据源将MySQL库中的数据迁移到mongo库中,发现取出后的数据与原数据时间上会出现8小时的相差,
最后度娘后终于解决问题,记录一下:
网上看到了两种比较实用的方法,因为使用的springboot原因,所以我这里使用的是在配置文件application.yml中进行修改,另外其他方法网上都可以搜到,
1.在连接数据库的配置上我们添加一项
&serverTimezone=GMT%2b8
primary: jdbc-url: jdbc:mysql://******:3306/***?useUnicode=true&characterEncoding=UTF8&zeroDateTimeBehavior=convertToNull&serverTimezone=GMT%2b8 username: **** password: ***** secondary: jdbc-url: jdbc:mysql://*******:3306/***?useUnicode=true&characterEncoding=UTF8&zeroDateTimeBehavior=convertToNull&serverTimezone=GMT%2b8 username: ***** password: ********
原格式应该是这样的:
&serverTimezone=GMT+8 这里使用%2b替换 + 号
2.直接在boot配置文件中增加jackson配置
#在application.yml中增加配置spring: jackson: time-zone: GMT+8
这样就可以成功将时间修改成功了,还有其他方法,大家可以查阅哦
springboot new Date()时区差8小时
1 在k8s环境中,在代码中比较时间。new Date() 下相差8小时
检查宿主机 时区是 cst时区
用java代码写出controller时区发现是GMT
代码如下:
Calendar calendar = Calendar.getInstance(); System.out.println("目前时间:" + calendar.getTime()); System.out.println("Calendar时区::" + calendar.getTimeZone().getID()); System.out.println("user.timezone:" + System.getProperty("user.timezone")); System.out.println("user.country:" + System.getProperty("user.country")); System.out.println("默认时区:" + TimeZone.getDefault().getID());
输出时区是 GMT 跟宿主机还不一样,搞不定运维,自己搞把
看来还是时区搞的鬼-
数据库链接db添加参数 serverTimezone=Asia/Shanghai
springboot启动脚本添加 -Duser.timezone=GMT+08
jackson 全局配置
spring.jackson.date-format: yyyy-MM-dd HH:mm:ssspring.jackson.time-zone: GMT+8
jackson 注解
@JsonFormat(timezone = “GMT+8”, pattern = “yyyy-MM-dd HH:mm:ss”)
以上就是“springboot数据库查询时出现时区差异问题怎么解决”这篇文章的所有内容,感谢各位的阅读!相信大家阅读完这篇文章都有很大的收获,小编每天都会为大家更新不同的知识,如果还想学习更多的知识,请关注编程网行业资讯频道。