spring 实体类定义的字段不能从数据读取
实体类上定义的日期字段,插入数据库时没问题,但是当读取出来时报映射错误,不能从类型LocalDate
转换到Date
类型:
No converter found capable of converting from type [java.time.LocalDate] to type [java.util.Date]
完整报错如下:
解决方法:
- 把字段的类型从
Date
类型换成LocalDate
类型就能读取