记一次处理slf4j依赖冲突问题的解决方案

启动程序报如下错误:

SLF4J: Class path contains multiple SLF4J bindings.
SLF4J: Found binding in [jar:file:/home/link/data/server/test_tomcat_main/webapps/ROOT/WEB-INF/lib/log4j-slf4j-impl-2.10.0.jar!/org/slf4j/impl/StaticLoggerBinder.class]
SLF4J: Found binding in [jar:file:/home/link/data/server/test_tomcat_main/webapps/ROOT/WEB-INF/lib/slf4j-log4j12-1.7.10.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.apache.logging.slf4j.Log4jLoggerFactory]
 

该错误可能导致两种问题:

1.不显示日志

2.日志正常显示,但一直提示该警告

当出现第一种问题时就比较严重了,运行程序看不到日志,无法验证程序。

该问题通常是由于slf4j存在多个实现导致冲突,先使用maven helper解决明显的slf4j冲突,如果仍然显示该警告,则尝试排除slf4j-log4j.jar的maven依赖

 

 

你可能感兴趣的:(记一次处理slf4j依赖冲突问题的解决方案)