SpringBoot 查詢時間資料 資料庫和返回資料相差8個小時
阿新 • • 發佈:2018-12-24
springboot 專案,Controller使用@ResponseBody註解,返回json資料,返回的資料時間與資料庫實際時間相差8個小時:
導致這個問題的原因,網上搜了一下,大概意思是:spring轉json的預設實現jackson中會根據時區去轉換時間,而jackson的預設時區跟國內是相差8小時的,所以這裡得重新設定當前專案地所在時區。
3種方式我都試了下,第一種資料庫配置適用於我的專案:
1. application.yml 或者application.properties 檔案中資料庫連線方式追加時區設定serverTimezone=GMT+8,這裡轉換+號為 %2b 後使用
spring: datasource: # 主資料來源 datasource: driverClassName: com.mysql.jdbc.Driver jdbc-url: jdbc:mysql://localhost:3306/ga_qhfj_microffice?useUnicode=true&characterEncoding=utf-8&serverTimezone=GMT%2b8&useSSL=false username: root password: root
2. application.properties 或 application.yml新增配置
#application.properties檔案配置
spring.jackson.time-zone=GMT+8
------------------------------------
#application.yml檔案配置
spring:
jackson:
time-zone: GMT+8
3.返回的實體類使用註解@JsonFormat
public class ArticleListVo { private Long articleId; @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone="GMT+8") private Date createTime; }
參考:
https://blog.csdn.net/m0_38043362/article/details/78855196
http://lingxue.51so.info/entry/2c92abb864647cc40166aa5d615b22ed
http://www.cnblogs.com/sxdcgaq8080/p/10056886.html
https://blog.csdn.net/jisu30miao1225/article/details/80931837