easyexcel
easyexcel copied to clipboard
poi-ooxml4.1.2现在有漏洞,需要升级到5.2.1以上,升级后导出报错
查看了下资料
按照如下文档建议的解决方法还是不生效
我的是这样的,正常使用
<!--easyexcel-->
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>easyexcel</artifactId>
<version>3.3.4</version>
<exclusions>
<exclusion>
<groupId>org.apache.poi</groupId>
<artifactId>poi</artifactId>
</exclusion>
<exclusion>
<groupId>org.apache.poi</groupId>
<artifactId>poi-ooxml</artifactId>
</exclusion>
<exclusion>
<groupId>org.apache.poi</groupId>
<artifactId>poi-ooxml-schemas</artifactId>
</exclusion>
</exclusions>
</dependency>
<!--poi 5+ 需要单独引入-->
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
<version>2.22.0</version>
</dependency>
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi</artifactId>
<version>5.2.5</version>
<exclusions>
<exclusion>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi-ooxml</artifactId>
<version>5.2.5</version>
</dependency>
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi-ooxml-schemas</artifactId>
<version>4.1.2</version>
</dependency>
感谢
@.***
发件人: LSL1618
发送时间: 2024-04-12 10:04
收件人: alibaba/easyexcel
抄送: 马小忙; Author
主题: Re: [alibaba/easyexcel] poi-ooxml4.1.2现在有漏洞,需要升级到5.2.1以上,升级后导出报错 (Issue #3742)
我的是这样的,正常使用
― Reply to this email directly, view it on GitHub, or unsubscribe. You are receiving this because you authored the thread.Message ID: @.***>
Hi, we have an update to poi-5! This issue has been completed, I will close this issue.