标签:form 解决办法 date() 日期 article tracking TE this top
解决办法:
@JsonFormat(pattern="yyyy-MM-dd")
public Date getRegistDate() {
return this.registDate;
}
改成
@JsonFormat(pattern="yyyy-MM-dd",timezone="GMT+8")
public Date getRegistDate() {
return this.registDate;
}
加上时区即可,中国是东八区
使用Jackson的@JsonFormat注解时出现少了 8 个小时
标签:form 解决办法 date() 日期 article tracking TE this top
原文地址:https://www.cnblogs.com/lingduqianli/p/9248097.html