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

问题

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

Jetty Maven Plugin环境:

  
      org.mortbay.jetty 
      jetty-maven- plugin 
       8.1.10.v20130312 
 

当报这个错时,就很难看到我们自己打出的日志,系统运行情况后台无法得到输出。

解决方案

加入以下依赖:

 
        org.slf4j
        slf4j-api
        1.7.21
    
    
        log4j
        log4j
        1.2.17
    
    
        org.slf4j
        slf4j-log4j12
        1.7.21
 

参考

  1. http://www.slf4j.org/codes.html#StaticLoggerBinder
  2. http://www.tuicool.com/articles/IjeMR3J

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