SpringBoot使用它来做日志功能;
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-logging</artifactId> </dependency>
底层依赖关系
总结:
? 1)、SpringBoot底层也是使用slf4j+logback的方式进行日志记录
? 2)、SpringBoot也把其他的日志都替换成了slf4j;
? 3)、中间替换包:
4)、如果我们要引入其他框架?一定要把这个框架的默认日志依赖移除掉
Spring框架用的是commons-logging;
<dependency> <groupId>org.springframework</groupId> <artifactId>spring-core</artifactId> <exclusions> <exclusion> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> </exclusion> </exclusions> </dependency>
SpringBoot能自动适配所有的日志,而且底层使用slf4j+logback的方式记录日志,引入其他框架的时候,只需要把这个框架依赖的日志框架排除掉即可;
原文地址:https://www.cnblogs.com/liunianfeiyu/p/10355425.html
时间: 2024-11-05 16:35:20