⑤、Spring-->refresh()-->initApplicationEventMulticaster()


前言

initApplicationEventMulticaster()的作用 :初始化应用程序事件多播器,
事件多播器ApplicationEventMulticaster、ApplicationListener、ApplicationEvent使用了发布订阅模式的设计模式
ApplicationEventMulticaster 类的方法如下所示:

在这里插入图片描述


直接看源码:

具体功能就是,如果我们自己定义了applicationEventMulticaster组件或者@Bean(name=“applicationEventMulticaster”)那么应用程序的事件多播器就是我们自定义的这个,如果不存在的话就new SimpleApplicationEventMulticaster(beanFactory);

protected void initApplicationEventMulticaster() {
	ConfigurableListableBeanFactory beanFactory = getBeanFactory();
	--------1、APPLICATION_EVENT_MULTICASTER_BEAN_NAME=applicationEventMulticaster
	--------这是我们在重新定义应用程序事件多播器的默认名称。
	--------如果beanFactory中singletonObjects或者beanDefinitionMap中含有这个名称
	if (beanFactory.containsLocalBean(APPLICATION_EVENT_MULTICASTER_BEAN_NAME)) {
		this.applicationEventMulticaster =
				beanFactory.getBean(APPLICATION_EVENT_MULTICASTER_BEAN_NAME, ApplicationEventMulticaster.class);
		if (logger.isDebugEnabled()) {
			logger.debug("Using ApplicationEventMulticaster [" + this.applicationEventMulticaster + "]");
		}
	}
	---------2、如果不存在自定义的话就new SimpleApplicationEventMulticaster(beanFactory);
	else {
		this.applicationEventMulticaster = new SimpleApplicationEventMulticaster(beanFactory);
		beanFactory.registerSingleton(APPLICATION_EVENT_MULTICASTER_BEAN_NAME, this.applicationEventMulticaster);
		if (logger.isDebugEnabled()) {
			logger.debug("Unable to locate ApplicationEventMulticaster with name '" +
					APPLICATION_EVENT_MULTICASTER_BEAN_NAME +
					"': using default [" + this.applicationEventMulticaster + "]");
		}
	}
}

至此应用程序的applicationEventMulticaster生成完成
但需要结合
Spring–>refresh()–> registerListeners一起组成发布订阅设计模式


版权声明:本文为yang108666原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明。