ApplicationListener实现原理

自定义一个实现ApplicationListener接口的类:

@Component
public class MyApplicationListener implements ApplicationListener<MyApplicationEvent> {
    @Override
    public void onApplicationEvent(MyApplicationEvent event) {
        System.out.println("我是测试监听器的类方法:"+event.getSource());
    }
}

这里使用了@Component注解,此注解下节分析;

然后再自定义一个触发事件:

public class MyApplicationEvent extends ApplicationEvent {
    public MyApplicationEvent(Object source) {
        super(source);
    }
}

要达到的效果就是,当请求发布的事件是MyApplicationEvent事件的时候,就需要调用自定义的监听器;

执行结果:

 可以看到执行的结果就是想要的结果。那么代码是如何实现这一点的呢?

这里只看关键代码,首先要找到AbstractApplicationContext#refresh的方法,其中最后第二步实例化方法是finishBeanFactoryInitialization(beanFactory)方法,它是通过getBean(beanName)来实例化剩余的单利的;

在此过程中,会调用如下方法:

	@Override
	public Object applyBeanPostProcessorsAfterInitialization(Object existingBean, String beanName)
			throws BeansException {

		Object result = existingBean;
		for (BeanPostProcessor processor : getBeanPostProcessors()) {
			Object current = processor.postProcessAfterInitialization(result, beanName);
			if (current == null) {
				return result;
			}
			result = current;
		}
		return result;
	}

看方法名称可知,其实初始化后应用bean的后置处理器的方法;

即调用了ApplicationListenerDetectorBeanPostProcessor的后置处理器,它实现了MergedBeanDefinitionPostProcessor接口,

注(在此之前已经执行):

所以在这之前,它会在doCreateBean的实例化之后调用其后置处理器的postProcessMergedBeanDefinition()方法,此处是将自定义的监听器添加到singletonNames中。

然后接着上面继续,它后置方法postProcessAfterInitialization()

	@Override
	public Object postProcessAfterInitialization(Object bean, String beanName) {
		if (bean instanceof ApplicationListener) {
			// potentially not detected as a listener by getBeanNamesForType retrieval
			Boolean flag = this.singletonNames.get(beanName);
			if (Boolean.TRUE.equals(flag)) {
				// singleton bean (top-level or inner): register on the fly
				this.applicationContext.addApplicationListener((ApplicationListener<?>) bean);
			}
			else if (Boolean.FALSE.equals(flag)) {
				if (logger.isWarnEnabled() && !this.applicationContext.containsBean(beanName)) {
					// inner bean with other scope - can't reliably process events
					logger.warn("Inner bean '" + beanName + "' implements ApplicationListener interface " +
							"but is not reachable for event multicasting by its containing ApplicationContext " +
							"because it does not have singleton scope. Only top-level listener beans are allowed " +
							"to be of non-singleton scope.");
				}
				this.singletonNames.remove(beanName);
			}
		}
		return bean;
	}

此时,先判断了一下对象是否是ApplicationListener类型,如果是,则添加到this.defaultRetriever.applicationListeners变量中,取值的时候,则会根据具体的类型进行判断

		for (ApplicationListener<?> listener : listeners) {
			if (supportsEvent(listener, eventType, sourceType)) {
				if (retriever != null) {
					filteredListeners.add(listener);
				}
				allListeners.add(listener);
			}
		}

此时,就会将根据事件类型,添加相应的监听器,然后调用对应的onApplicationEvent方法。

当然,此处也可以使用spi的形式注入或者@Bean的形式都可以;

监听器可以实现线程上下文的的热更新等功能。

Spring Boot 应用的启动原理主要涉及以下几个关键组件和步骤: 1. `@SpringBootApplication` 注解:这个注解是一个复合注解,它包含了 `@Configuration`、`@EnableAutoConfiguration` 和 `@ComponentScan`。这意味着 Spring Boot 应用会扫描带有 `@Component`、`@Service`、`@Repository`、`@Controller` 等注解的类,并将它们注册为 Spring 容器的 Bean。 2. `SpringApplication.run()` 方法:这是启动 Spring Boot 应用的主要入口点。`SpringApplication` 类会负责引导整个应用的启动过程。在调用 `run()` 方法时,它会执行以下操作: - 创建 `SpringApplication` 实例。 - 配置应用的上下文初始化参数。 - 加载应用的 `ApplicationContext`。 - 触发 `ApplicationContextInitializer` 和 `ApplicationListener` 的注册。 - 将主配置类(即包含 `@SpringBootApplication` 注解的类)加载为配置源。 - 启动 `Spring` 应用上下文。 - 加载并调用所有 `CommandLineRunner` 和 `ApplicationRunner` 的 `run` 方法。 3. `SpringFactoriesLoader`:这是 Spring Boot 自动配置的核心。`SpringFactoriesLoader` 类的作用是在应用的 `META-INF/spring.factories` 文件中加载所有配置好的工厂类,并实现自动装配。 4. `@EnableAutoConfiguration`:这个注解会触发 Spring Boot 的自动配置机制。Spring Boot 会根据添加的依赖和 `spring.factories` 中定义的配置类,自动配置 Spring 应用上下文。 5. `Banner` 的打印:在 Spring Boot 应用启动时,会默认打印一个 ASCII 形式的横幅(Banner),这个横幅可以在 `application.properties` 或 `application.yml` 文件中通过设置 `spring.main.show-banner` 来关闭。 6. 应用监听器:Spring Boot 会在应用启动的各个阶段发布相应的事件,监听器可以监听这些事件并进行响应。 7. Spring Boot Actuator:如果应用中包含了 Actuator 相关依赖,它还会添加一些用于监控和管理应用的端点(Endpoint)。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值