问题背景
项目使用springboot整合easyexcel
文件导出时报错Could not initialize class net.sf.cglib.beans.BeanMap$Generator
- easyexcel 版本为 3.0.5
springboot 版本为 2.3.12
#### 解决方案
调整pom依赖为以下<dependency> <groupId>com.alibaba</groupId> <artifactId>easyexcel</artifactId> <version>3.0.5</version> <exclusions> <exclusion> <groupId>cglib</groupId> <artifactId>cglib</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>cglib</groupId> <artifactId>cglib</artifactId> <version>3.1</version> </dependency>
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。