Lombok的Accessors导致EasyExcel读取失败
大约 2 分钟
相关代码
@Data
public class XXXXStoreDTO {
@ExcelIgnore
private String aaaa;
@ExcelProperty(value = "*门店编码",index = 0)
private String storeNo;
@ExcelProperty("门店名称")
private String storeName;
@ExcelIgnore
private String bbbb;
}
@Override
public List<XXXXStoreDTO > getStore(String filePath) throws IOException {
URL url = new URL(filePath);
InputStream inputStream = new BufferedInputStream(url.openStream());
List<CampaignStoreDTO> allList = new ArrayList<>();
EasyExcel.read(inputStream, XXXXStoreDTO .class, new PageReadListener<XXXXStoreDTO >(dataList -> {
allList.addAll(dataList);
})).sheet().headRowNumber(1).doRead();
return allList;
}
当XXXXStoreDTO类上没有添加@Accessors(chain = true)注解后不能正常读取数据,
没有细究原因,记录下坑
系统推荐
- getPath vs getAbsolutePath vs getCanonicalPath
- Git合并多个提交并push到远程仓库
- JVM参数设置
- Hadoop 一
- 乱七八糟的笔记
- JDK8 G1 堆内存居然不释放
- 简易版配置中心&初探原理
- MyBatis xml特殊字符处理
- JVM杂项
- RocketMQ
- MySQL数据迁移到PGSQL
- SpringCloud总体认识
- 随机毒鸡汤:别去劝一个执意要吃屎的人,不然他不但不会感谢你,还会以为你要和他抢着吃。