#最近專案中使用到多資料來源將MySQL函式庫中的資料遷移到mongo函式庫中,發現取出後的資料與原始資料時間上會出現8小時的相差,
最後度娘後終於解決問題,記錄一下:
網路上看到了兩種比較實用的方法,因為使用的springboot原因,所以我這裡使用的是在設定檔application.yml中進行修改,另外其他方法網路都可以搜到,
&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替换 + 号
#在application.yml中增加配置 spring: jackson: time-zone: GMT+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 跟宿主機還不一樣,搞不定維,自己搞把
看來還是時區搞的鬼-
#1、資料庫連結db新增參數serverTimezone=Asia/Shanghai
2、springboot啟動腳本新增-Duser.timezone=GMT 08
3、jackson 全域設定
spring.jackson.date-format: yyyy-MM-dd HH:mm:ss spring.jackson.time-zone: GMT+8
4、jackson 註解
@JsonFormat(timezone = “GMT+8”, pattern = “yyyy-MM-dd HH:mm:ss”)
以上是springboot資料庫查詢時出現時區差異問題怎麼解決的詳細內容。更多資訊請關注PHP中文網其他相關文章!