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

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

  • 问题介绍:
  • 问题分析:
  • 官网解释:
  • 解决方案:
  • Over !!!

问题介绍:

在这里插入图片描述

问题分析:

根据报错提示,我们可以知道出错的原因是“加载类文件org.slf4j.impl.StaticLoggerBinder时失败”,而出错的地方主要是在于slf4j的jar包。

官网解释:

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.
————————————————
翻译成中文的意思就是:
日志含义当org.slf4j.impl. py文件运行时,报告此错误。StaticLoggerBinder类无法加载到内存中。当在类路径上找不到合适的SLF4J绑定时,就会发生这种情况。把slf4j-nop.jarslf4j-simple.jarslf4j-log4j12.jarslf4j-jdk14.jarlogback-classic.jar中的一个(且只有一个)放在类路径上就能解决问题。

解决方案:

在Maven工程的pom文件新增一个上述的包文件之一的依赖配置,如下:

<dependency>  
  <groupId>org.slf4jgroupId> 
  <artifactId>slf4j-nopartifactId> 
  <version>1.7.2version> 
dependency>

Over !!!

参考资料:Maven项目报错:“ SLF4J: Failed to load class “org.slf4j.impl.StaticLoggerBinder ”解决办法

你可能感兴趣的:(IDE开发调试常见错误,maven,ide,java)