前端表单提交时间字段是String类型,然而后台无法将其解析成Date
需要在实体类时间字段加上@DateTimeFormat(pattern = "yyyy-MM-dd")
@DateTimeFormat(pattern = "yyyy-MM-dd")
Failed to convert from type [java.lang.String] to type [java.util.Date]
原文:https://www.cnblogs.com/Faink/p/13727151.html