当前位置:   article > 正文

SpringBoot日志整合

SpringBoot日志整合

Spring Boot 整合日志框架的核心是通过 spring-boot-starter-logging 依赖来实现的,它默认整合了 Logback 日志框架。

Spring Boot 对各种日志框架进行了自动配置,使得我们可以很容易地在 Spring Boot 应用中使用日志。

  1. Spring Boot 在类路径下寻找 Logback 的配置文件 logback-spring.xml,如果不存在,则会寻找标准的 Logback 配置文件 logback.xml

  2. 如果 logback-spring.xml 或 logback.xml 文件不存在,Spring Boot 会查找默认的日志配置,并应用默认的日志级别(通常是 INFO

  3. Spring Boot 还可以通过在 application.properties 或 application.yml 配置文件中设置 logging.config 属性来指定日志配置文件

  4. Spring Boot 提供了自动配置的日志工厂,可以自动适配 Logback、Log4j2、Log4j 等日志框架。

在 Maven 的 pom.xml 中添加 spring-boot-starter-logging 依赖

 

  1. <dependency>
  2. <groupId>org.springframework.boot</groupId>
  3. <artifactId>spring-boot-starter-logging</artifactId>
  4. </dependency>

在 src/main/resources 目录下创建 logback-spring.xml 文件,并配置日志

  1. <configuration>
  2. <appender name="CONSOLE" class="ch.qos.logback.core.ConsoleAppender">
  3. <encoder>
  4. <pattern>%d{yyyy-MM-dd HH:mm:ss} - %msg%n</pattern>
  5. </encoder>
  6. </appender>
  7. <root level="info">
  8. <appender-ref ref="CONSOLE" />
  9. </root>
  10. </configuration>

在代码中使用日志

  1. import org.slf4j.Logger;
  2. import org.slf4j.LoggerFactory;
  3. import org.springframework.stereotype.Component;
  4. @Component
  5. public class MyComponent {
  6. private static final Logger logger = LoggerFactory.getLogger(MyComponent.class);
  7. public void doSomething() {
  8. logger.info("This is an info message");
  9. }
  10. }

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/天景科技苑/article/detail/1011731
推荐阅读
相关标签
  

闽ICP备14008679号