日志jar包冲突解决 SLF4J: Class path contains multiple SLF4J bindings.

 一、错误信息:

    SLF4J: Class path contains multiple SLF4J bindings.

    LoggerFactory is not a Logback LoggerContext but Logback is on the classpath

SLF4J: Class path contains multiple SLF4J bindings.
SLF4J: Found binding in [jar:file:/C:/Users/Administrator/.m2/repository/org/slf4j/slf4j-simple/1.7.32/slf4j-simple-1.7.32.jar!/org/slf4j/impl/StaticLoggerBinder.class]
SLF4J: Found binding in [jar:file:/C:/Users/Administrator/.m2/repository/ch/qos/logback/logback-classic/1.2.5/logback-classic-1.2.5.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 [org.slf4j.impl.SimpleLoggerFactory]
Exception in thread "main" java.lang.IllegalArgumentException: LoggerFactory is not a Logback LoggerContext but Logback is on the classpath. Either remove Logback or the competing implementation (class org.slf4j.impl.SimpleLoggerFactory loaded from file:/C:/Users/Administrator/.m2/repository/org/slf4j/slf4j-simple/1.7.32/slf4j-simple-1.7.32.jar). If you are using WebLogic you will need to add 'org.slf4j' to prefer-application-packages in WEB-INF/weblogic.xml: org.slf4j.impl.SimpleLoggerFactory

二、原因分析:

    日志上看classpath上有多个SLF4J的jar绑定,有多个日志包 slf4j-simple-1.7.32.jar,logback-classic-1.2.5.jar

    LoggerFactory is not a Logback LoggerContext but Logback is on the classpath

三、解决方案:

排除slf4j-simple-1.7.32.jar 

步骤:(pom.xml -> show Dependencies -> 找到jar -> shift + delete排除)

如下图:

日志jar包冲突解决 SLF4J: Class path contains multiple SLF4J bindings._第1张图片

日志jar包冲突解决 SLF4J: Class path contains multiple SLF4J bindings._第2张图片

四、效果:

自动在引入slf4j-simple的依赖排除了slf4j-simple.jar 

日志jar包冲突解决 SLF4J: Class path contains multiple SLF4J bindings._第3张图片

 启动验证,ok

后续解决,引入的上游项目调整,不引入slf4j-simple

你可能感兴趣的:(java,spring,log4j)