写点什么

SLF4J 多个 jar 在类路径问题

作者:Geek_5829b6
  • 2022 年 8 月 18 日
    广东
  • 本文字数:433 字

    阅读完需:约 1 分钟

SLF4J: Class path contains multiple SLF4J bindings.SLF4J: Found binding in [jar:file:/D:/soft/build/repo/ch/qos/logback/logback-classic/1.2.11/logback-classic-1.2.11.jar!/org/slf4j/impl/StaticLoggerBinder.class]SLF4J: Found binding in [jar:file:/D:/soft/build/repo/org/apache/logging/log4j/log4j-slf4j-impl/2.17.2/log4j-slf4j-impl-2.17.2.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:log4j2.xml'
复制代码


我们可以打开依赖分析搜一下,经过检查是 spring-boot-starter-data-redis 中包含了 log 的内部依赖,排除即可


<exclusion>  <groupId>org.springframework.boot</groupId>  <artifactId>spring-boot-starter-logging</artifactId></exclusion>
复制代码


发布于: 刚刚阅读数: 4
用户头像

Geek_5829b6

关注

还未添加个人签名 2019.09.01 加入

还未添加个人简介

评论

发布
暂无评论
SLF4J多个jar在类路径问题_Java_Geek_5829b6_InfoQ写作社区