log4j-slf4j-impl cannot be present with log4j-to-slf4j

log4j-slf4j-impl cannot be present with log4j-to-slf4j

这个错误的意思是 log4j-slf4j-impl 和 log4j-to-slf4j 这两个包不能同时存在。

那么为什么这两个包不能同时存在呢?我们先来看一下这两个包的定义:

  • log4j-slf4j-impl
    Apache Log4j SLF4J Binding: The Apache Log4j SLF4J API binding to Log4j 2 Core
  • log4j-to-slf4j
    Apache Log4j to SLF4J Adapter: The Apache Log4j binding between Log4j 2 API and SLF4J

从上述定义可以看出,log4j-slf4j-impl 主要是 log4j 对 slf4j 接口的实现,而 log4j-to-slf4j 则是 slf4j 对 log4j 接口的适配。

这两个接口不能同时存在的意思是说,要么用 log4j 日志系统,然后同时支持 slf4j 接口的调用;要么用其他日志系统,比如logback(logback是 slf4j 接口的实现),然后适配log4j接口。不能兼而有之!

spring boot 默认使用的logback日志系统,logback实现的是slf4j接口,因此需要适配 log4j接口,因而会引入 log4j-to-slf4j。

<dependency>
  <groupId>org.springframework.bootgroupId>
  <artifactId>spring-boot-starter-loggingartifactId>
  <version>2.3.5.RELEASEversion>
  <scope>compilescope>
dependency>

因此,如果您正在使用的是spring boot,则不能引入log4j-slf4j-impl。

问题解决:只需要看一下是哪个 pom 文件引入了 log4j-slf4j-impl,把这个包去掉就可以啦!

了解更多?
SLF4J、JCL、JUL、log4j、logback的关系

你可能感兴趣的:(Spring,Boot)