使用easyExcel报错:IllegalArgumentException: can not find date format for:2022-10-20 17:00
在使用easyExcel写数据存储到数据库中时报错。IllegalArgumentException: can not find date format for:2022-10-20 17:00
如果entity使用Data类型的数据来就收的话,就精确到秒了,即使使用@DateTimeFormat(value=“yyyy-mm-dd”)也无法成功转化,如果entity使用LocalData类型的话,easyexcel又会报数据转换异常
最终解决方案是直接将要导入的对象属性类型从Data改为String,数据库可以识别String并转为日期类型(mysql5.7)。
参考文章1
https://blog.csdn.net/weixin_39080216/article/details/108658572?utm_medium=distribute.pc_relevant_t0.none-task-blog-BlogCommendFromMachineLearnPai2-1.edu_weight&depth_1-utm_source=distribute.pc_relevant_t0.none-task-blog-BlogCommendFromMachineLearnPai2-1.edu_weight
参考文章2
https://blog.csdn.net/fsadkjl/article/details/105800590