spring 实体类定义的字段不能从数据读取
作者:互联网
实体类上定义的日期字段,插入数据库时没问题,但是当读取出来时报映射错误,不能从类型LocalDate
转换到Date
类型:
No converter found capable of converting from type [java.time.LocalDate] to type [java.util.Date]
完整报错如下:
解决方法:
- 把字段的类型从
Date
类型换成LocalDate
类型就能读取
有知道为什么的老铁给我留言
来自为知笔记(Wiz)
标签:实体类,java,读取,spring,类型,Date,LocalDate 来源: https://www.cnblogs.com/baiyifengyun/p/16398999.html