Spring Framework 将日志输出到slf4j的方法

这里提供maven build的解决方案.
原理就是将spring自己依赖中的commons-logging从classpath中移除, 并添加jcl-over-slf4j 将commons-logging的log输出到slf4j中. (jcl 就是commons-logging的缩写, 全名 jarkata commons logging)

 
        org.springframework
        spring-webmvc
        ${org.springframework.version}
        
            
                commons-logging
                commons-logging
            
        


        org.slf4j
        jcl-over-slf4j
        1.7.10

你可能感兴趣的:(java)