【问题描述】
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>