@JsonFormat時間不對

qingyezhu發表於2015-07-07

實際時間為:2015-07-06 20:20:23

1、

    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date updateTime;

 顯示的時間為:2015-07-06 12:20:23

2、

    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private Date updateTime;

顯示的時間為:2015-07-06 20:20:23

 加入時區timezone = "GMT+8",由於中國在東八區

相關文章