当前位置: 代码迷 >> 综合 >> java log 出现:SLF4J: Failed to load class org.slf4j.impl.StaticLoggerBinder.
  详细解决方案

java log 出现:SLF4J: Failed to load class org.slf4j.impl.StaticLoggerBinder.

热度:84   发布时间:2023-11-17 21:42:39.0

使用log4j出现:SLF4J: Failed to load class “org.slf4j.impl.StaticLoggerBinder”.
log error info

进入官网链接:http://www.slf4j.org/codes.html#StaticLoggerBinder

官网描述

前面一段话翻译过来就是:当org.slf4j.impl.staticloggerbinder类无法加载到内存中时,会报告此警告消息。当在类路径上找不到合适的slf4j绑定时,就会发生这种情况。将slf4j-nop.jar slf4j-simple.jar、slf4j-log4j12.jar、slf4j-jdk14.jar或logback-classic.jar中的一个(并且只有一个)放在类路径上就能解决问题。

所以解决办法就是加入其中一个依赖,例如:

<!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-log4j12 --><dependency><groupId>org.slf4j</groupId><artifactId>slf4j-log4j12</artifactId><version>1.7.25</version></dependency>

问题就可以解决了。

  相关解决方案