其他分享
首页 > 其他分享> > springboot解决日期传给前端少了八小时的问题

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中添加
在这里插入图片描述

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

标签:GMT,springboot,mm,dd,yyyy,MM,HH,传给,八小时
来源: https://blog.csdn.net/weixin_43784341/article/details/121104970