使用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)。

另一个方案是自定义类型转换器。参考:https://easyexcel.opensource.alibaba.com/docs/current/quickstart/write#%E6%97%A5%E6%9C%9F%E6%95%B0%E5%AD%97%E6%88%96%E8%80%85%E8%87%AA%E5%AE%9A%E4%B9%89%E6%A0%BC%E5%BC%8F%E8%BD%AC%E6%8D%A2

 


参考文章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

 

posted @ 2022-10-29 00:06  Fancy[love]  阅读(1538)  评论(0编辑  收藏  举报