当前位置: 首页 > article >正文

解决SLF4J: Class path contains multiple SLF4J bindings问题

在启动SpringBoot项目时,遇到了SLF4J和logback的冲突问题。问题的原因是类路径下存在多个SLF4J绑定。本文将详细分析问题的原因以及如何解决它。

问题描述:

在启动Spring Boot项目时,控制台报错如下:

SLF4J: Class path contains multiple SLF4J bindings.
SLF4J: Found binding in [jar:file:/D:/Program%20Files/JavaEclipse/repo/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:/Program%20Files/JavaEclipse/repo/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]

另外,日志系统初始化失败,并报如下错误:

Logging system failed to initialize using configuration from 'classpath:log4j.properties'
java.lang.IllegalStateException: Could not initialize Logback logging from classpath:log4j.properties

原因分析:

出现此问题的原因是logback-classic包和slf4j-log4j12包之间发生了冲突,特别是org/slf4j/impl/StaticLoggerBinder.class这个类。

Spring Boot 默认使用的是logback作为日志框架,而log4j曾经是主流的日志框架,很多第三方工具包都会引入log4j。由于开发时引入了多个第三方包,就会导致logback和log4j之间的冲突。

问题解决:排除其中一个的依赖

如果你决定使用log4j作为日志框架,那么需要排除Spring Boot默认的logback依赖。可以通过在spring-boot-starterspring-boot-starter-web的依赖中排除spring-boot-starter-logging来避免冲突。

解决步骤:

  1. spring-boot-starter依赖中排除spring-boot-starter-logging

    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter</artifactId>
        <exclusions>
            <!-- 排除自带的logback依赖 -->
            <exclusion>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-starter-logging</artifactId>
            </exclusion>
        </exclusions>
    </dependency>
    
  2. spring-boot-starter-web依赖中也排除spring-boot-starter-logging

    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-web</artifactId>
        <exclusions>
            <!-- 排除自带的logback依赖 -->
            <exclusion>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-starter-logging</artifactId>
            </exclusion>
        </exclusions>
    </dependency>
    

注意: 上述排除操作需要在两个依赖中都进行。

总结

当Spring Boot项目中出现SLF4J: Class path contains multiple SLF4J bindings的错误时,通常是因为logback-classicslf4j-log4j12包发生了冲突。通过排除其中一个日志框架的依赖,可以解决该问题。如果选择使用log4j,可以排除默认的logback依赖。


http://www.kler.cn/a/391350.html

相关文章:

  • 32位、64位、x86与x64:深入解析计算机架构
  • Axure网络短剧APP端原型图,竖屏微剧视频模版40页
  • 【初阶数据结构与算法】链表刷题之移除链表元素、反转链表、找中间节点、合并有序链表、链表的回文结构
  • JavaScript高级程序设计基础(四)
  • 物理设备命名规则(Linux网络服务器 15)
  • 【JAVA】Java基础—面向对象编程:封装—保护类的内部数据
  • 丹摩征文活动 | 搭建 CogVideoX-2b详细教程:用短短6秒展现创作魅力
  • labview实现上升沿和下降沿
  • 【海外SRC漏洞挖掘】谷歌语法发现XSS+Waf Bypass
  • SpringBoot下Bean的单例模式详解
  • Spring Boot编程训练系统:开发中的挑战与解决方案
  • PVE纵览-从零开始:了解Proxmox Virtual Environment
  • C++初阶——list
  • 【MySQL】MySQL函数之JSON_EXTRACT
  • python机器人Agent编程——使用swarm框架和ollama实现一个本地大模型和爬虫结合的手机号归属地天气查询Agent流(体会)
  • CKA认证 | Day2 K8s内部监控与日志
  • Rust where子句(用于指定泛型类型参数约束、泛型约束、泛型类型约束)
  • npm list @types/node 命令用于列出当前项目中 @types/node 包及其依赖关系
  • linux进行磁盘分区
  • 深度学习:tensor的定义与维度
  • SOLIDWORKS代理商鑫辰信息科技
  • DOM NodeList 探索
  • caozha-order(广告竞价页订单管理系统)
  • sqlite更新
  • 第R3周:RNN-心脏病预测(TensorFlow版)
  • JavaWeb--SpringBoot