SpringBoot选用 SLF4j(日志门面,统一接口)和logback(日志实现);
public static void main(String[] args) {
Logger logger = LoggerFactory.getLogger(HelloWorld.class);
logger.info("Hello World");
}
加入任意的Spring Boot starter 都会默认引入spring-boot-starter-logging,不需要多余去加一次
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring‐boot‐starter‐logging</artifactId>
</dependency>
SpringBoot能自动适配所有的日志,而且底层使用slf4j+logback的方式记录日志,引入其他框架的时候,只需要
把这个框架依赖的日志框架排除掉即可;
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring‐core</artifactId>
&l