Failed to load class "org.slf4j.impl.StaticLoggerBinder".

一、问题

Failed to load class “org.slf4j.impl.StaticLoggerBinder”.

二、问题分析

slf4j是日志打印的工具类,只在pom.xml中添加了依赖配置。错误说是加载“org.slf4j.impl.StaticLoggerBinder”失败,翻阅官网找到问题描述:

This error is reported when the org.slf4j.impl.StaticLoggerBinder class could not be loaded into memory. This happens when no appropriate SLF4J binding could be found on the class path. Placing one (and only one) of slf4j-nop.jar, slf4j-simple.jar, slf4j-log4j12.jar, slf4j-jdk14.jar or logback-classic.jar on the class path should solve the problem.
简单的说就是没有slf4j-nop.jar的jar.

三、问题解决

添加slf4j-nop.jar依赖:

<dependency>
            <groupId>org.slf4j</groupId>
            <artifactId>slf4j-nop</artifactId>
            <version>1.6.1</version>
</dependency>

具体版本后,请根据自己项目的依赖版本而定,保持一致!

发布了32 篇原创文章 · 获赞 10 · 访问量 2万+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章