首页 > 代码库 > 【SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".】解决办法
【SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".】解决办法
【问题描述】
Maven工程中,使用了slf4j,运行时出现错误:
SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder". SLF4J: Defaulting to no-operation (NOP) logger implementation SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further details.
【问题原因】
无法找到org.slf4j.impl.StaticLoggerBinder,无法加载的内存,没有找到合适的绑定SLF4J,需要添加所列举的包中的某一个。
【解决办法】
添加slf4j-nop.jar, slf4j-simple.jar, slf4j-log4j12.jar, slf4j-jdk14.jar 或者 logback-classic.jar 中的一个包到工程项目中,到http://www.mvnrepository.com/artifact/org.slf4j/slf4j-nop/1.7.6查找slf4j的maven包,添加以下内容到pom.xml配置文件中。
<dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-nop</artifactId> <version>1.7.6</version> </dependency>
【SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".】解决办法
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。