spring中日志相关对象的创建过程

本文涉及的产品
日志服务 SLS,月写入数据量 50GB 1个月
简介: spring中日志相关对象的创建过程,logback的扩展标签支持
  1. 容器在启动的过程中会实例化org.springframework.context.ApplicationListener的实现类,其中包括org.springframework.boot.context.logging.LoggingApplicationListener
  2. LoggingApplicationListener通过监听容器的生命周期事件来实例化和配置org.springframework.boot.logging.LoggingSystem对象的。
  3. 抽象类LoggingSystem指定了日志相关实例的生命周期和默认支持的日志框架。

    /**
     * 其支持默认支持Logback,Log4J,JavaLogging
     */
    public abstract class LoggingSystem {
        /**
         * 返回用户指定使用的或者默认的LoggingSystem,
         * 默认返回LogbackLoggingSystem
         */
        public static LoggingSystem get(ClassLoader classLoader) {
            String loggingSystem = System.getProperty(SYSTEM_PROPERTY);
            if (StringUtils.hasLength(loggingSystem)) {
                if (NONE.equals(loggingSystem)) {
                    return new NoOpLoggingSystem();
                }
                return get(classLoader, loggingSystem);
            }
            return SYSTEMS.entrySet().stream()
                    .filter((entry) -> ClassUtils.isPresent(entry.getKey(), classLoader))
                    .map((entry) -> get(classLoader, entry.getValue())).findFirst()
                    .orElseThrow(() -> new IllegalStateException(
                            "No suitable logging system located"));
        }
    }
  4. LoggingApplicationListener来调用LoggingSystem相关生命周期方法

    public class LoggingApplicationListener {
    
          //确定了具体使用哪个日志框架,默认使用Logback
          private void onApplicationStartingEvent(ApplicationStartingEvent event) {
              this.loggingSystem = LoggingSystem
                      .get(event.getSpringApplication().getClassLoader());
              this.loggingSystem.beforeInitialize();
          }
    
          //对LoggingSystem进行初始化
          private void onApplicationEnvironmentPreparedEvent(
                  ApplicationEnvironmentPreparedEvent event) {
              if (this.loggingSystem == null) {
                  this.loggingSystem = LoggingSystem
                          .get(event.getSpringApplication().getClassLoader());
              }
              initialize(event.getEnvironment(), event.getSpringApplication().getClassLoader());
          }
          //将LoggingSystem注册到容器中
          private void onApplicationPreparedEvent(ApplicationPreparedEvent event) {
              ConfigurableListableBeanFactory beanFactory = event.getApplicationContext()
                      .getBeanFactory();
              if (!beanFactory.containsBean(LOGGING_SYSTEM_BEAN_NAME)) {
                  beanFactory.registerSingleton(LOGGING_SYSTEM_BEAN_NAME, this.loggingSystem);
              }
          }
          //做一些清理相关的工作
          private void onContextClosedEvent() {
              if (this.loggingSystem != null) {
                  this.loggingSystem.cleanUp();
              }
          }   
      }
  5. Springboot中使用Logback框架进行日志打印,其配置文件是如何支持springProperty标签的?
    LogbackLoggingSystem在初始化的过程中会加载相关的xml配置文件,
    通过logback相关的解析器进行解析,并对解析器进行来扩展(SpringBootJoranConfigurator),使其支持pringProperty标签。

    SpringBootJoranConfigurator 中定义了扩展的标签和对该标签的解析方式

    class SpringBootJoranConfigurator extends JoranConfigurator {
    
            private LoggingInitializationContext initializationContext;
    
            SpringBootJoranConfigurator(LoggingInitializationContext initializationContext) {
                this.initializationContext = initializationContext;
            }
    
            @Override
            public void addInstanceRules(RuleStore rs) {
                super.addInstanceRules(rs);
                Environment environment = this.initializationContext.getEnvironment();
                rs.addRule(new ElementSelector("configuration/springProperty"),
                        new SpringPropertyAction(environment));
                rs.addRule(new ElementSelector("*/springProfile"),
                        new SpringProfileAction(this.initializationContext.getEnvironment()));
                rs.addRule(new ElementSelector("*/springProfile/*"), new NOPAction());
            }
    
        }
相关实践学习
日志服务之使用Nginx模式采集日志
本文介绍如何通过日志服务控制台创建Nginx模式的Logtail配置快速采集Nginx日志并进行多维度分析。
目录
相关文章
|
2天前
|
存储 安全 Java
Spring Boot 3 集成Spring AOP实现系统日志记录
本文介绍了如何在Spring Boot 3中集成Spring AOP实现系统日志记录功能。通过定义`SysLog`注解和配置相应的AOP切面,可以在方法执行前后自动记录日志信息,包括操作的开始时间、结束时间、请求参数、返回结果、异常信息等,并将这些信息保存到数据库中。此外,还使用了`ThreadLocal`变量来存储每个线程独立的日志数据,确保线程安全。文中还展示了项目实战中的部分代码片段,以及基于Spring Boot 3 + Vue 3构建的快速开发框架的简介与内置功能列表。此框架结合了当前主流技术栈,提供了用户管理、权限控制、接口文档自动生成等多项实用特性。
27 8
|
15天前
|
存储 Java Spring
【Spring】获取Bean对象需要哪些注解
@Conntroller,@Service,@Repository,@Component,@Configuration,关于Bean对象的五个常用注解
|
15天前
|
存储 Java 应用服务中间件
【Spring】IoC和DI,控制反转,Bean对象的获取方式
IoC,DI,控制反转容器,Bean的基本常识,类注解@Controller,获取Bean对象的常用三种方式
|
28天前
|
XML 安全 Java
Spring Boot中使用MapStruct进行对象映射
本文介绍如何在Spring Boot项目中使用MapStruct进行对象映射,探讨其性能高效、类型安全及易于集成等优势,并详细说明添加MapStruct依赖的步骤。
|
3月前
|
Java Spring
获取spring工厂中bean对象的两种方式
获取spring工厂中bean对象的两种方式
56 1
|
3月前
|
前端开发 Java Spring
【Spring】“请求“ 之传递单个参数、传递多个参数和传递对象
【Spring】“请求“ 之传递单个参数、传递多个参数和传递对象
155 2
|
3月前
|
存储 Java 程序员
SpringIOC和DI的代码实现,Spring如何存取对象?@Controller、@Service、@Repository、@Component、@Configuration、@Bean DI详解
本文详细讲解了Spring框架中IOC容器如何存储和取出Bean对象,包括五大类注解(@Controller、@Service、@Repository、@Component、@Configuration)和方法注解@Bean的用法,以及DI(依赖注入)的三种注入方式:属性注入、构造方法注入和Setter注入,并分析了它们的优缺点。
45 0
SpringIOC和DI的代码实现,Spring如何存取对象?@Controller、@Service、@Repository、@Component、@Configuration、@Bean DI详解
|
5月前
[Azure Developer]把Azure Function中ILogger对象静态化为静态方法提供日志记录
[Azure Developer]把Azure Function中ILogger对象静态化为静态方法提供日志记录
|
5月前
|
人工智能 Java Spring
Spring框架下,如何让你的日志管理像‘AI’一样智能,提升开发效率的秘密武器!
【8月更文挑战第31天】日志管理在软件开发中至关重要,不仅能帮助开发者追踪问题和调试程序,还是系统监控和运维的重要工具。在Spring框架下,通过合理配置Logback等日志框架,可大幅提升日志管理效率。本文将介绍如何引入日志框架、配置日志级别、在代码中使用Logger,以及利用ELK等工具进行日志聚合和分析,帮助你构建高效、可靠的日志管理系统,为开发和运维提供支持。
85 0
|
5月前
|
监控 Java Serverless
美团 Flink 大作业部署问题之想在Serverless平台上实时查看Spring Boot应用的日志要怎么操作
美团 Flink 大作业部署问题之想在Serverless平台上实时查看Spring Boot应用的日志要怎么操作
下一篇
开通oss服务