Springboot页面插入数据库记录时出现如下报错:
org.springframework.core.convert.ConversionFailedException: Failed to convert from type [java.lang.String] to type [@com.alibaba.fastjson.annotation.JSONField java.util.Date] for value '2018-06-29'
原因:类型转换问题,在Bean实体字段或参数上增加@DateTimeFormat注解
@DateTimeFormat(pattern = "yyyy-MM-dd")
private Date createdDate;