干掉讨厌的commons-logging依赖

阅读更多

因为使用Slf4j,所以一直以来都对commons-logging以来很反感,无奈所以来的很多开源组件都依赖它。

 

今天才知道可以使用jcl-over-slf4j包去替换commons-logging,真的很干净。

 

dependencies>
   
      org.springframework
      spring-context
      3.0.0.RELEASE
      runtime
      
         
            commons-logging
            commons-logging
         
      
   
   
      org.slf4j
      jcl-over-slf4j
      1.5.8
      runtime
   
   
      org.slf4j
      slf4j-api
      1.5.8
      runtime
   
   
      org.slf4j
      slf4j-log4j12
      1.5.8
      runtime
   
   
      log4j
      log4j
      1.2.14
      runtime
   
 

 

你可能感兴趣的:(log4j,Spring)