IDEA:SLF4J: Failed to load class “org.slf4j.impl.StaticLoggerBinder“.

Posted 流楚丶格念

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了IDEA:SLF4J: Failed to load class “org.slf4j.impl.StaticLoggerBinder“.相关的知识,希望对你有一定的参考价值。

报错

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.
Logging initialized using 'class org.apache.ibatis.logging.stdout.StdOutImpl' adapter.

原因

通过他提示进入官网查看

错误原因是编译的时候少了 slf4j-nop.jar slf4j-simple.jar, slf4j-log4j12.jar,slf4j-jdk14.jar或 logback-classic.jar中的其中一个jar包,加上去就行(只能是一个,多了就会有冲突)。

你们可能是运行的测试模块,或者没写scope

解决

加入这个包并编写<scope>compile</scope>

当依赖的scope为compile的时候,那么当前这个依赖的包,会在编译的时候被加⼊进来,并且在打包(mvn package)的时候也会被加⼊进来。

<dependency>
  <groupId>org.slf4j</groupId>
  <artifactId>slf4j-simple</artifactId>
  <version>1.7.25</version>
  <scope>compile</scope>
</dependency>

以上是关于IDEA:SLF4J: Failed to load class “org.slf4j.impl.StaticLoggerBinder“.的主要内容,如果未能解决你的问题,请参考以下文章

SLF4J: Failed to load class “org.slf4j.impl.StaticLoggerBinder“.

SLF4J: Failed to load class的问题及解决

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

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

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

SLF4J: Failed to load class "org.slf4j.impl.StaticLo