`

HIbernatre 3.3: org.slf4j.impl.StaticLoggerBinder

阅读更多
SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".   
SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further details.   
Exception in thread "main" java.lang.NoClassDefFoundError: org/slf4j/impl/StaticLoggerBinder   
    at org.slf4j.LoggerFactory.<clinit>(LoggerFactory.java:60)   
    at org.hibernate.cfg.Configuration.<clinit>(Configuration.java:151)   
    at fuwei.hibernate.ExportDB.main(ExportDB.java:8)   
Caused by: java.lang.ClassNotFoundException: org.slf4j.impl.StaticLoggerBinder   
    at java.net.URLClassLoader$1.run(URLClassLoader.java:200)   
    at java.security.AccessController.doPrivileged(Native Method)   
    at java.net.URLClassLoader.findClass(URLClassLoader.java:188)   
    at java.lang.ClassLoader.loadClass(ClassLoader.java:307)   
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)   
    at java.lang.ClassLoader.loadClass(ClassLoader.java:252)   
    at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:320)   
    ... 3 more  

很明显是相关的jar包没有被引入,而且“hibernate-distribution-3.3.1.GA-dist.zip”中压根就没有org/slf4j/impl/StaticLoggerBinder类的存在,还需另外下载slf4j-nop-1.5.2.jar引入到工程中才行。

感谢:http://rgrg.iteye.com/blog/271643
分享到:
评论
2 楼 z276356445t 2011-01-06  
多谢,不然又得多花上几个小时了.
1 楼 memorys 2009-03-04  
Thanks

相关推荐

    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中某一个而且...

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

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

    slf4j-log4j12-1.5.11.jar

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

    slf4j-1.5.2.jar

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

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

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

    slf4j-nop-1.6.1.jar文件.rar

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

    slf4j-log4j12-1.7.5.jar的源码

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

    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-1.5.11 jar包,源文件

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

    slf4j-log4j12-1.5.8.jar

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

    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

    slf4j1.5.6

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

    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