彻底解决SLF4J: Class path contains multiple SLF4J bindings.

本文介绍了一种常见的SpringBoot项目问题——SLF4J包冲突,并提供了详细的解决方案。通过使用Maven的dependency:tree命令,可以找出项目中所有依赖的SLF4J版本。文中还展示了如何在pom.xml文件中排除冲突的依赖,以确保项目中只有一个SLF4J实现。

springboot项目跑起来后,一直报SLF4J包冲突,看着很烦。

Connected to the target VM, address: '127.0.0.1:64448', transport: 'socket'
SLF4J: Class path contains multiple SLF4J bindings.
SLF4J: Found binding in [jar:file:/D:/maven-3.3.3/m2/repository/ch/qos/logback/logback-classic/1.2.3/logback-classic-1.2.3.jar!/org/slf4j/impl/StaticLoggerBinder.class]
SLF4J: Found binding in [jar:file:/D:/maven-3.3.3/m2/repository/org/slf4j/slf4j-log4j12/1.7.25/slf4j-log4j12-1.7.25.jar!/org/slf4j/impl/StaticLoggerBinder.class]
SLF4J: See http://www.slf4j.org/codes.html#multiple_bindings for an explanation.
SLF4J: Actual binding is of type [ch.qos.logback.classic.util.ContextSelectorStaticBinder]

  .   ____          _            __ _ _
 /\\ / ___'_ __ _ _(_)_ __  __ _ \ \ \ \
( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
 \\/  ___)| |_)| | | | | || (_| |  ) ) ) )
  '  |____| .__|_| |_|_| |_\__, | / / / /
 =========|_|==============|___/=/_/_/_/
 :: Spring Boot ::        (v2.1.0.RELEASE)

这个要解决一下

既然是冲突,那可能就是项目中依赖了多个不同版本的slf4j类库,那如何分析到底是哪几个类库依赖了slf4j呢?我们可以使用dependency:tree命令:

$ mvn dependency:tree

看到dubbo中slf4j冲突,我们排除一下就好了

<dependency>
   <groupId>com.alibaba</groupId>
   <artifactId>dubbo</artifactId>
   <version>3.8.4</version>
   <exclusions>
      <exclusion>
         <groupId>org.springframework</groupId>
         <artifactId>spring</artifactId>
      </exclusion>
              <exclusion>
              <groupId>org.slf4j</groupId>
              <artifactId>slf4j-log4j12</artifactId>
          </exclusion>
   </exclusions>
 </dependency>

试一下干净清爽了

 

 

 

在Linux上,如果遇到`SLF4J: Class path contains multiple SLF4J bindings`这样的错误,通常意味着你的项目中引入了多个日志框架,如logback和slf4j本身的jar包,它们试图竞争作为默认的日志管理器。解决这个问题需要确保只有一个SLF4J绑定被有效加载。这里有一些步骤可以帮助你: 1. **查看依赖**:首先,检查你的Maven或Gradle构建文件,确认是否有多个SLF4J相关的依赖项。移除多余的、未使用的库。 ```bash mvn dependency:tree | grep slf4j ``` 或者 ```bash gradle dependencies | grep slf4j ``` 2. **保留一个版本**:选择一个你喜欢的日志框架,例如slf4j本身或logback,并将其作为项目的主要日志库。删除其他版本。 3. **排除冲突**:在build.gradle或pom.xml文件中,对slf4j的依赖添加exclusions,明确指定排除其他冲突的版本。 例如,在Gradle中: ```groovy dependencies { implementation 'org.slf4j:slf4j-api:1.x.y' implementation 'org.slf4j:slf4j-log4j12:1.x.y' // 或者 logback-classic implementation 'ch.qos.logback:logback-core:1.x.y' implementation 'ch.qos.logback:logback-classic:1.x.y' exclude group: 'org.slf4j', module: 'slf4j-log4j12' // 或者exclude org.slf4j:slf4j-jdk14 } ``` 4. **配置桥接器**:如果你同时使用slf4j-api和logback-classic,可能需要在应用启动时添加一个BridgeHandler,确保两者能正常协同工作。比如在Spring Boot中,可以这样做: ```java import org.slf4j.bridge.SLF4JBridgeHandler; SLF4JBridgeHandler.removeHandlersForRootLogger(); SLF4JBridgeHandler.install(); ``` 5. **重启项目**:最后,清理并重新构建项目,然后重启应用程序以加载新的配置。
评论 8
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值