springboot 使用 log4j时 与 springboot自带logback 的StaticLoggerBinder.class文件冲突

 尝试搭框架时,踩的坑。在scdn看了其它的博客并不能解决,但是有很好的参考价值。并经过自己的不懈努力之下 成功解决!

idea:2019版

springboot:2.1.8

log4j:2.11.2

Class path contains multiple SLF4J bindings.
SLF4J: Found binding in [jar:file:/D:/javaMvnRepo/org/apache/logging/log4j/log4j-slf4j-impl/2.11.2/log4j-slf4j-impl-2.11.2.jar!/org/slf4j/impl/StaticLoggerBinder.class]
SLF4J: Found binding in [jar:file:/D:/javaMvnRepo/ch/qos/logback/logback-classic/1.2.3/logback-classic-1.2.3.jar!/org/slf4j/impl/StaticLoggerBinder.class]
SLF4J: See http://www.slf4j.org/codes.html#multiple_bindings for an explanation.

 直接看操作,前四步就这样。

首先打开idea右侧的maven,点击此图标,看到jar包关系图,找到冲突jar包,这样已经完成一半了。

springboot 使用 log4j时 与 springboot自带logback 的StaticLoggerBinder.class文件冲突_第1张图片

 另外一半代码献出!pom.xml

       
            org.springframework.boot
            spring-boot-starter
            
                
                    org.springframework.boot
                    spring-boot-starter-logging
                
                
                    org.slf4j
                    slf4j-log4j12
                
            
        

最后完美解决!。

springboot 使用 log4j时 与 springboot自带logback 的StaticLoggerBinder.class文件冲突_第2张图片

你可能感兴趣的:(springboot 使用 log4j时 与 springboot自带logback 的StaticLoggerBinder.class文件冲突)