@DatetimeFormat是将String转换成Date,一般前台给后台传值时用
import org.springframework.format.annotation.DateTimeFormat; /** * 前台传后台时, 字符串自动封装成日期 */ @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") private Date birth;
@JsonFormat(pattern=”yyyy-MM-dd”) 将Date转换成String 一般后台传值给前台时
import com.fasterxml.jackson.annotation.JsonFormat; /** * 后台返给前台时, 日期自动格式化 */ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") private Date birth;