1. 程式人生 > >java時間展示格式和時區問題

java時間展示格式和時區問題

一、在實體的屬性上加註解@JsonFormat
@ApiModelProperty("建立時間")
@Column("CJSJ")
@JsonFormat(pattern="yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
private Date createTime;

二、application.properties加全域性配置

#全域性格式化時間
spring.jackson.date-format=yyyy-MM-dd HH:mm:ss
spring.jackson.time-zone=GMT+08