We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
版本 fastexcel版本:1.0.0 spirngboot版本:2.7.18
问题描述 springboot使用了log4j2作为日志框架,但是fastexcel引入了logback-core和logback-classic,导致log4j2冲突失效。 报错信息:SLF4J: Class path contains multiple SLF4J bindings.
临时解决方案 手动排除fastexcel引入的依赖
<dependency> <groupId>cn.idev.excel</groupId> <artifactId>fastexcel</artifactId> <version>${fastexcel.version}</version> <exclusions> <exclusion> <groupId>ch.qos.logback</groupId> <artifactId>logback-core</artifactId> </exclusion> <exclusion> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> </exclusion> </exclusions> </dependency>
希望后续版本能优化
The text was updated successfully, but these errors were encountered:
No branches or pull requests
版本
fastexcel版本:1.0.0
spirngboot版本:2.7.18
问题描述
springboot使用了log4j2作为日志框架,但是fastexcel引入了logback-core和logback-classic,导致log4j2冲突失效。
报错信息:SLF4J: Class path contains multiple SLF4J bindings.
临时解决方案
手动排除fastexcel引入的依赖
希望后续版本能优化
The text was updated successfully, but these errors were encountered: