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

使用slf4j报错
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.
image.png
  • slf4j即简单日志门面(Simple Logging Facade for Java),不是具体的日志解决方案,它只服务于各种各样的日志系统。
  • 打印slf4j需要具体日志实现框架log4j,log4j2
  • 第三方框架使用slf4j方便使用者用自己的日志实现框架接管日志
写第三方项目的时候可以使用日志实现框架做 Test

这里使用了 log4j2 做日志的实现框架
scope 设置了 test 打包的时候不会被打包进去

pom.xml


    
        
            org.apache.maven.plugins
            maven-jar-plugin
            2.4
            
                
                    **/log4j2.xml
                
            
        
    



    
     
        org.slf4j
        slf4j-api
        1.7.25
    
    
        org.apache.logging.log4j
        log4j-api
        2.8
        test
    
    
        org.apache.logging.log4j
        log4j-core
        2.8
        test
    
    
        org.apache.logging.log4j
        log4j-slf4j-impl
        2.8.2
        test
    
    


你可能感兴趣的:(SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".)