SpringBoot日志关系

3、SpringBoot日志关系

        
            org.springframework.boot
            spring-boot-starter
        

 

SpringBoot使用它来做日志功能;

    
            org.springframework.boot
            spring-boot-starter-logging
        

底层依赖关系

总结:

​ 1)、SpringBoot底层也是使用slf4j+logback的方式进行日志记录

​ 2)、SpringBoot也把其他的日志都替换成了slf4j;

​ 3)、中间替换包?

@SuppressWarnings("rawtypes")
public abstract class LogFactory {
​
    static String UNSUPPORTED_OPERATION_IN_JCL_OVER_SLF4J = "http://www.slf4j.org/codes.html#unsupported_operation_in_jcl_over_slf4j";
​
    static LogFactory logFactory = new SLF4JLogFactory();

 

​ 4)、如果我们要引入其他框架?一定要把这个框架的默认日志依赖移除掉?

​ Spring框架用的是commons-logging;

        
            org.springframework
            spring-core
            
                
                    commons-logging
                    commons-logging
                
            
        

==SpringBoot能自动适配所有的日志,而且底层使用slf4j+logback的方式记录日志,引入其他框架的时候,只需要把这个框架依赖的日志框架排除掉即可;==

你可能感兴趣的:(java,框架,springBoot)