message [Failed to convert property value of type [java.lang.String] to required type [java.util.Date] for property

springmvc前台字符串,后台Date类型字段。时间强转失败

数值:18年12月31日 15:43:21

解决方法,给时间字段加注释

 @DateTimeFormat(pattern = "yy年MM月dd日 HH:mm:ss")
  private Date f_createtime;

 

点赞