在实体类的日期属性上添加@JsonFormat
和@DateTimeFormat
注解。
import java.util.Date;
public class Test {
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
private Date date;
public void setDate(Date date){
this.date = date;
}
public Date getDate(){
return date;
}
}
@DateTimeFormat
注解用于指定从前台接受的时间字符串格式,若格式不对应则抛出异常。
@JsonFormat
注解用于将Date日期格式化为指定格式的字符串。由于在序列化时间时是按照国际标准时间GMT进行格式化的,最后接受到的数据会早勒8个小时,所以应该添加timezone = "GMT+8"
属性将时区设置为于国内相同的CST时区。