Spring的ApplicationContext
提供了支持事件和代码中监听器的功能。java
咱们能够建立bean用来监听在ApplicationContext
中发布的事件。ApplicationEven
t类和在ApplicationContext
接口
中处理的事件,若是一个bean实现了ApplicationListener
接口,当一个ApplicationEvent
被发布之后,bean会自动被通知。web
1
2
3
4
5
6
7
8
|
public
class
AllApplicationEventListener
implements
ApplicationListener < ApplicationEvent >
{
@Override
public
void
onApplicationEvent(ApplicationEvent applicationEvent)
{
//process event
}
}
|
Spring 提供了如下5中标准的事件:spring
应用场景:不少时候咱们想要在某个类加载完毕时干某件事情,可是使用了spring管理对象,咱们这个类引用了其余类(多是更复杂的关联),因此当咱们去使用这个类作事情时发现包空指针错误,这是由于咱们这个类有可能已经初始化完成,可是引用的其余类不必定初始化完成,因此发生了空指针错误,解决方案以下:
一、写一个类继承spring的ApplicationListener监听,并监控ContextRefreshedEvent事件(容易初始化完成事件)
二、定义简单的bean:<bean id="beanDefineConfigue" class="com.creatar.portal.webservice.BeanDefineConfigue"></bean>
或者直接使用@Component("BeanDefineConfigue")注解方式
完整的类以下:
package com.creatar.portal.webservice;
import org.springframework.context.ApplicationListener;
import org.springframework.context.event.ContextRefreshedEvent;
import org.springframework.stereotype.Component;
@Component("BeanDefineConfigue")
public class BeanDefineConfigue implements
ApplicationListener<ContextRefreshedEvent> {//ContextRefreshedEvent为初始化完毕事件,spring还有不少事件能够利用
// @Autowired
// private IRoleDao roleDao;
/**
* 当一个ApplicationContext被初始化或刷新触发
*/
@Override
public void onApplicationEvent(ContextRefreshedEvent event) {
// roleDao.getUserList();//spring容器初始化完毕加载用户列表到内存
System.out.println("spring容易初始化完毕================================================");
}
}
或者使用xml配置方式(非注解),简单配置个bean便可
<bean id="beanDefineConfigue" class="com.creatar.portal.webservice.BeanDefineConfigue"></bean>
其余定义方式:
完整的类以下:
package com.creatar.portal.webservice;
import java.util.ArrayList;
import java.util.List;
import org.springframework.context.ApplicationEvent;
import org.springframework.context.ApplicationListener;
import org.springframework.context.event.ContextRefreshedEvent;
import org.springframework.stereotype.Component;
@Component("BeanDefineConfigue2")
public class BeanDefineConfigue2 implements ApplicationListener<ApplicationEvent> {
List<String> list = new ArrayList<String>();
/**
* 当一个ApplicationContext被初始化或刷新触发
*/
@Override
public void onApplicationEvent(ApplicationEvent event) {
if (event instanceof ContextRefreshedEvent) {
System.out.println("spring容易初始化完毕================================================888");
}
}
}
spring其余事件:
spring中已经内置的几种事件:
ContextClosedEvent 、ContextRefreshedEvent 、ContextStartedEvent 、ContextStoppedEvent 、RequestHandleEvent
后续研究:
applicationontext和使用MVC以后的webApplicationontext会两次调用上面的方法,如何区分这个两种容器呢?
可是这个时候,会存在一个问题,在web 项目中(spring mvc),系统会存在两个容器,一个是root application context ,另外一个就是咱们本身的 projectName-servlet context(做为root application context的子容器)。
这种状况下,就会形成onApplicationEvent方法被执行两次。为了不上面提到的问题,咱们能够只在root application context初始化完成后调用逻辑代码,其余的容器的初始化完成,则不作任何处理,修改后代码
以下:
@Override
public void onApplicationEvent(ContextRefreshedEvent event) {
if(event.getApplicationContext().getParent() == null){//root application context 没有parent,他就是老大.
//须要执行的逻辑代码,当spring容器初始化完成后就会执行该方法。
}
}
后续发现加上以上判断仍是能执行两次,不加的话三次,最终研究结果使用如下判断更加准确:event.getApplicationContext().getDisplayName().equals("Root WebApplicationContext")mvc