转载自:https://www.cnblogs.com/dingzheng/p/8025527.html
说明:
注意:
@DateTimeFormat @JsonFormat 这两个注解在网上搜索很很多资料,我只提几个需要注意的地方:
@DateTimeFormat(pattern="yyyy-MM-dd")
private Date alertDate;
@JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm")
public Date getAlertDate() {
return alertDate;
}
public void setAlertDate(Date alertDate) {
this.alertDate = alertDate;
}