SLF4J 发现多个绑定类 Class path contains multiple SLF4J bindings.

SLF4J警告信息表明类路径中存在多个日志绑定,这可能导致日志实现冲突。解决方法是在Maven项目的pom.xml中分析依赖树,找到引起冲突的log4j-slf4j-impl包,并将其排除。通过修改pom.xml文件,排除该依赖可以消除警告并优化日志管理。
摘要由CSDN通过智能技术生成

报错信息

SLF4J: Class path contains multiple SLF4J bindings.
SLF4J: Found binding in [jar:file:/C:/Users/yu109/.m2/repository/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:/C:/Users/yu109/.m2/repository/org/apache/logging/log4j/log4j-slf4j-impl/2.12.1/log4j-slf4j-impl-2.12.1.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]

报错原因

报错信息中第一行已经说明了,在类路径下包含了多个 slf4j 的绑定,然后下面列出了对应的类, 然后最后一行说明了,从中选择了一个实际绑定的类。

其实这个警告问题并不大,即使不处理,也不会影响我们正常的日志打印,但是每次一启动就打印这种警告实在很烦。

解决办法

解决办法就很简单了,我们只需要分析maven依赖,然后找到警告日志中包含的jar,把这个jar排除依赖即可。

例如,我的工程里是存在一个 log4j-slf4j-impl

在这里插入图片描述

在pom.xml 目录执行 mvn dependency:tree

执行结果会以树形结构展现出来,然后我们找到警告中对应的jar包,然后向上找到根jar包,也就是我们的工程pom.xml 直接引用的,然后排除,如下图:
在这里插入图片描述

在 pom.xml 排除多余的这个jar

		<dependency>
			<groupId>net.mingsoft</groupId>
			<artifactId>ms-mpeople</artifactId>
			<version>1.0.0.0-SNAPSHOT</version>
			<exclusions>
				<exclusion>
					<groupId>org.apache.logging.log4j</groupId>
					<artifactId>log4j-slf4j-impl</artifactId>
				</exclusion>
			</exclusions>
		</dependency>

根本原因

slf4j 是一个日志门面,自身并没有实现日志相关的功能,常见的实现有 logback 、 log4j等等,然后通过绑定关系,来建立slf4j 和具体日志实现类的关联,上面的报错,就是因为在类路径下发现了多个 slf4j 的绑定,因此报了这个警告,我们可以通过源代码,来看一下这个块绑定的逻辑:

我们在使用 slf4j ,通常都是如下情况:

// 我们就从LoggerFactory.getLogger 方法作为入口,看看slf4j 是如何绑定实现类的
private Logger log = LoggerFactory.getLogger(Object.class);

org.slf4j.LoggerFactory 的源码如下: 我做了一些简化,并且重新调整了源代码的顺序,从上到下是按照调用顺序整理了一下,并且只保留了主要的代码,方便我们查看:

public final class LoggerFactory {

    public static Logger getLogger(Class<?> clazz) {
		// 调用getLogger方法,如下
        Logger logger = getLogger(clazz.getName());
        // ... 
        return logger;
    }
	
	public static Logger getLogger(String name) {
		// 获取日志工厂
        ILoggerFactory iLoggerFactory = getILoggerFactory();
        return iLoggerFactory.getLogger(name);
    }
	
	public static ILoggerFactory getILoggerFactory() {
        if (INITIALIZATION_STATE == UNINITIALIZED) {
            synchronized (LoggerFactory.class) {
                if (INITIALIZATION_STATE == UNINITIALIZED) {
                    INITIALIZATION_STATE = ONGOING_INITIALIZATION;
                    performInitialization();
                }
            }
        }
       // ....
    }	


	// 用来完成一些初始化工作,具体就包括绑定日志实现类
    private final static void performInitialization() {
        bind();
        if (INITIALIZATION_STATE == SUCCESSFUL_INITIALIZATION) {
            versionSanityCheck();
        }
    }
	
	// 执行具体的绑定,首先会在类路径下找到绑定类
	private final static void bind() {
        try {
            Set<URL> staticLoggerBinderPathSet = null;

            if (!isAndroid()) {
				// 调用方法找到类路径下所有的绑定类 ,其实从这里就可以看出来slf4j是如何与具体的实现类绑定起来的
                staticLoggerBinderPathSet = findPossibleStaticLoggerBinderPathSet();
				// 检查一下如果有多个绑定类,就会报开头的那个警告
                reportMultipleBindingAmbiguity(staticLoggerBinderPathSet);
            }
            // ...
        } catch (NoClassDefFoundError ncde) {
            // ...
        } catch (java.lang.NoSuchMethodError nsme) {
            // ...
        } catch (Exception e) {
            // ...
        }
    }
		// 绑定类的全限定名,这个类在所有的slf4j中都存在
	    private static String STATIC_LOGGER_BINDER_PATH = "org/slf4j/impl/StaticLoggerBinder.class";
		
		// 查找可能存在的类路径 
	    static Set<URL> findPossibleStaticLoggerBinderPathSet() {
        Set<URL> staticLoggerBinderPathSet = new LinkedHashSet<URL>();
        try {
            ClassLoader loggerFactoryClassLoader = LoggerFactory.class.getClassLoader();
            Enumeration<URL> paths;
            if (loggerFactoryClassLoader == null) {
				// 通过类加载器找到绑定类的path路径
                paths = ClassLoader.getSystemResources(STATIC_LOGGER_BINDER_PATH);
            } else {
                paths = loggerFactoryClassLoader.getResources(STATIC_LOGGER_BINDER_PATH);
            }
            while (paths.hasMoreElements()) {
                URL path = paths.nextElement();
                staticLoggerBinderPathSet.add(path);
            }
        } catch (IOException ioe) {
            Util.report("Error getting resources from path", ioe);
        }
        return staticLoggerBinderPathSet;
    }
	
	
	// 这个方法就是打印开头的那个报警,发现了多个绑定类
	private static void reportMultipleBindingAmbiguity(Set<URL> binderPathSet) {
        if (isAmbiguousStaticLoggerBinderPathSet(binderPathSet)) {
            Util.report("Class path contains multiple SLF4J bindings.");
            for (URL path : binderPathSet) {
                Util.report("Found binding in [" + path + "]");
            }
            Util.report("See " + MULTIPLE_BINDINGS_URL + " for an explanation.");
        }
    }
	
}
评论 4
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值