springboot解决日期传给前端少了八小时的问题

第一种

@DateTimeFormat
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
@ApiModelProperty(value = "时间", example = "2020-4-5 10:30:55")
private Date time;

第二种
在yml中添加
springboot解决日期传给前端少了八小时的问题

spring:
jackson:
date-format: yyyy-MM-dd HH:mm:ss
time-zone: GMT+8

上一篇:LX10M-ASEMI迷你贴片整流桥LX10M


下一篇:JAVA日期格式化常用格式对照表