在属性中加上@JsonFormat注解即可,后面时区为东八区时间
例:
@Column(name = “update_date”)
@JsonFormat(pattern =“yyyy-MM-dd HH:mm:ss”, timezone = “GMT+08:00”)
private Date updateDate;
在属性中加上@JsonFormat注解即可,后面时区为东八区时间
例:
@Column(name = “update_date”)
@JsonFormat(pattern =“yyyy-MM-dd HH:mm:ss”, timezone = “GMT+08:00”)
private Date updateDate;