`
luchonglin4
  • 浏览: 1500 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论
阅读更多
当启动tomcat 报错:noclass...org.slf4j.impl.StaticLoggerBinder
   查找slf4j网站:http://www.slf4j.org/codes.html#StaticLoggerBinder
发现有这么一段介绍  

Failedto load class org.slf4j.impl.StaticLoggerBinder
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.


意思是只要有给出几个包的一个  那么StaticLoggerBinder这个类是一定能找到的,(我们平时用的应该是slf4j-nop.jar)
  但是我导入后还是报同样的错误,于是猜想可能是编译的时候没有编译成功,所以重新clean一下  然后重新编译,结果成功。希望对你有多帮助

  由于第一次用这个工具,不会上传图片,只能把文字复制过来了,请见谅。
分享到:
评论

相关推荐

    slf4j jar包

    org.slf4j.impl.StaticLoggerBinder.class org.slf4j.impl.StaticMDCBinder.class org.slf4j.impl.StaticMarkerBinder.class org.slf4j.spi.LocationAwareLogger.class org.slf4j.spi.LoggerFactoryBinder.class org...

    hibernate的slf4j-nop包

    hibernate的错误SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".的解决方法是:下载slf4j-nop.jar、slf4f-simple.jar、slf4j-log4j12.jar、slf4j-jdk14.jar或logback-classic.jar中某一个而且...

    HIbernatre 3.3: org.slf4j.impl.StaticLoggerBinder

    NULL 博文链接:https://javajoy.iteye.com/blog/285894

    slf4j-1.5.2.jar

    类org.slf4j.impl.StaticLoggerBinder并不在slf4j-api-1.5.2.jar包中,仔细查看每个与具体日志系统对应的jar包,就会发现,相应的jar包都有一个org.slf4j.impl.StaticLoggerBinder的实现,不同的实现返回与该日志...

    解决SLF4J: Failed to load class "org.slf

    SLF4J在启动时会尝试加载一个名为`org.slf4j.impl.StaticLoggerBinder`的类,这是SLF4J API与具体日志实现之间交互的关键。如果找不到这个类,就会抛出上述错误。 解决这个问题通常需要以下几个步骤: 1. **检查...

    slf4j-log4j

    用于Failed to load class "org.slf4j.impl.StaticLoggerBinder"问题的jar包

    slf4j相关jar包

    6. `org.slf4j.impl.StaticLoggerBinder`:SLF4J API与具体日志实现之间的桥梁。在运行时,SLF4J会查找并加载合适的`StaticLoggerBinder`,从而确定实际的日志实现。 至于压缩包中的"SLF4J.txt"可能是SLF4J的使用...

    slf4j-log4j12-1.5.11.jar

    关于解决 java.lang.NoClassDefFoundError: org/slf4j/impl/StaticLoggerBinder 的解决方法

    slf4j-nop-1.6.6.jar

    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...

    slf4j-log4j12-1.7.5.jar

    解决Failed to load class "org.slf4j.impl.StaticLoggerBinder" 所需要的jar包:slf4j-log4j12-1.7.5.jar

    slf4j-nop-1.6.1.jar文件.rar

    当你遇到“SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder”这样的错误时,通常意味着你的应用程序在运行时未能找到合适的SLF4J实现。StaticLoggerBinder是SLF4J用来绑定具体日志框架的关键类,...

    slf4j-1.5.2.zip

    在你的问题中,"org.slf4j.impl.StaticLoggerBinder class could not be loaded into memory" 错误通常表明SLF4J在运行时无法找到对应的绑定器,即缺少了具体的日志实现。 SLF4J的工作原理是通过加载`...

    slf4j-1.5.11 jar包,源文件

    这通过`org.slf4j.impl.StaticLoggerBinder`类实现。 3. **日志配置**:虽然SLF4J本身不负责日志的具体输出格式和级别,但可以通过绑定的日志实现进行配置。例如,对于Logback,配置文件通常是`logback.xml`,而...

    tomcat9-slf4j-logback:Tomcat 9.0.x的SLF4J和Logback集成

    Tomcat + SLF4J +登录 Tomcat SLF4J Logback是tomcat的替代产品,它允许所有内部日志记录全部使用我们喜欢的slf4j / logback库。 注意 从logback 1.1.7开始,不再需要在server.xml中包含${catalina.home}来进行...

    slf4j-log4j12-1.7.5.jar的源码

    2. **Log4j桥接**:`org.slf4j.impl`包下的`StaticLoggerBinder`实现了SLF4J的静态绑定逻辑,确保在运行时能够找到并加载Log4j 1.2的实现。这个类是SLF4J API与Log4j 1.2之间的桥梁,它会自动寻找`log4j.properties`...

    slf4j-log4j12-1.5.8.jar

    同时,标签还包含了"org/slf4j/impl/StaticLoggerBinder",这是SLF4J的核心组件,它实现了SLF4J的静态绑定机制,使得SLF4J可以在运行时确定并使用实际的日志实现。 压缩包内的"log4j-1.2.15.jar"是Log4j的1.2.15...

    slf4j1.5.6

    /org/slf4j/impl/StaticLoggerBinder.class`来实现的。如果找不到,SLF4J会提供一个简单的“NOP”(No Operation)实现,即不执行任何操作。 5. **slf4j-1.5.6版本** 标签中的"slf4j1.5.6"指的是SLF4J的一个旧版本...

    gradle-javadoc-notimestamp-error:带有-doctitle,-notimestamp和自定义doclet的Gradle 6.0 javadoc任务错误的公共再现

    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#StaticLoggerBind

    TestingApp:用于测试实践的测试应用纲要

    运行.jar文件例如java -jar compendium-of-test-apps-v1-1.jar 服务器应该会启动,您会看到如下内容: SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".SLF4J: Defaulting to no-operation (NOP)...

    配置hibernate-distribution-3.6.6.Final时出现的问题及解决办法

    - **具体表现**:在日志输出时,可能会看到类似“Failed to load class 'org.slf4j.impl.StaticLoggerBinder'”的警告信息。 - **原因分析**:这表明SLF4J(Simple Logging Facade for Java)未能找到一个合适的日志...

Global site tag (gtag.js) - Google Analytics