解决Caused by:java.lang.VerifyError:class net.sf.cglib.core.DebuggingClassWriter overrides final method visit.(IILjava/lang/String;Ljava/lang/String;Ljava/lang/String;[Ljava/lang/String;)V异常
异常描述
使用Alibaba的easyExcel在请求导出文件接口出现以下的异常。
Caused by:java.lang.VerifyError:class net.sf.cglib.core.DebuggingClassWriter overrides final method visit.(IILjava/lang/String;Ljava/lang/String;Ljava/lang/String;[Ljava/lang/String;)V
异常分析
概念:EasyExcel依赖asm;asm依赖cglib。所以需要选择对应的版本号。
解决方案
1.引入maven坐标;
<dependency> <groupId>asm</groupId> <artifactId>asm</artifactId> <version>x.x</version> </dependency> <dependency> <groupId>cglib</groupId> <artifactId>cglib</artifactId> <version>x.x</version> </dependency>
2.提供版本配对的坐标;
easyExcel | asm | cglib | lombok | |
---|---|---|---|---|
依赖版本号 |
3.1.x | x | x | 1.18.20 |
3.0.x | 7.1 | 3.3.0 | 1.18.20 | |
2.2.x | 4.2 | 3.1 | 1.18.8 | |
2.1.x | 4.2 | 3.1 | 1.18.8 | |
2.0.x | 4.2 | 3.1 | 1.18.8 |
笔者: 沙漏倒装回忆1024
出处:https://www.cnblogs.com/lpan1024/
版权所有,欢迎保留原文链接进行转载!
请点赞关注留言,如果有任何建议也可以留言,因为我会回复每一条评论,感谢阅读。
作者:沙漏倒装回忆1024
版权所有,转载请注明原文链接: https://www.cnblogs.com/lpan1024/p/16703638.html
请点赞关注留言,如果有任何建议也可以留言,因为我会回复每一条评论,感谢阅读。
版权所有,转载请注明原文链接: https://www.cnblogs.com/lpan1024/p/16703638.html
请点赞关注留言,如果有任何建议也可以留言,因为我会回复每一条评论,感谢阅读。