原文路径:http://zhaoshijie.iteye.com/blog/1974682
应用场景:很多时候我们想要在某个类加载完毕时干某件事情,但是使用了spring管理对象,我们这个类引用了其他类(可能是更复杂的关联),所以当我们去使用这个类做事情时发现包空指针错误,这是因为我们这个类有可能已经初始化完成,但是引用的其他类不一定初始化完成,所以发生了空指针错误,解决方案如下:
1、写一个类继承spring的ApplicationListener监听,并监控ContextRefreshedEvent事件(容易初始化完成事件)
2、定义简单的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")
相关推荐
在 Spring Boot 应用程序中,容器加载完成后,框架会触发 ContextRefreshedEvent 事件,该事件表明容器已经加载完成,可以执行特定操作了。我们可以创建一个实现 ApplicationListener 接口的类,用于监听 ...
服务导出的入口是ServiceBean的export()方法,当Spring容器启动完毕并接收到ContextRefreshedEvent事件时,会触发这个方法。ServiceBean对象包含了服务的所有参数,如timeout,这些参数可以通过@Service注解进行设置...
5. 容器初始化完成:所有Bean都初始化完成后,ApplicationContext会发布ContextRefreshedEvent事件,表明Spring容器已经准备就绪,可以对外提供服务。 四、lib、template、config目录分析 在提供的文件列表中,...
ContextRefreshedEvent 事件是在 ApplicationContext 容器初始化或者刷新时触发的事件。这意味着,在容器加载完成后,可以执行一些特定的操作。 例如,以下代码实现了一个 ApplicationListener,监听 ...
下面我们将详细介绍Spring ApplicationListener的使用,包括ContextRefreshedEvent事件监听和自定义事件的使用。 一、ContextRefreshedEvent事件监听 ContextRefreshedEvent是Spring的内置事件,当...
在 SpringMVC 框架中,我们可以使用 ApplicationListener 机制来监听 ContextRefreshedEvent 事件,该事件会在 ApplicationContext 初始化或刷新时触发。通过实现 ApplicationListener 接口,我们可以在应用程序启动...
ApplicationListener 是 Spring 框架中的一种监听器接口,它可以在 Spring 容器中捕捉到各种事件,例如 ContextRefreshedEvent、ContextStartedEvent、ContextStoppedEvent 等。开发者可以通过实现 Application...
在程序启动时,我们可以使用ApplicationListener接口来监听ContextRefreshedEvent事件,该事件是在ApplicationContext初始化完成后触发的。 首先,我们需要创建一个实现ApplicationListener接口的类,该类将负责...
此外,Spring还提供了`ContextRefreshedEvent`、`ApplicationStartedEvent`和`ApplicationStoppedEvent`等内置事件,用于监听应用程序的启动、刷新和关闭等生命周期事件。 在实际开发中,Spring事件可以用于模块间...
Spring内置了一些预定义的事件类型,如ContextRefreshedEvent、ContextStartedEvent、ContextStoppedEvent和ContextClosedEvent,它们分别对应于Spring应用上下文的初始化、启动、停止和关闭。此外,开发者还可以...
Spring内建了一系列预定义的事件,如`ContextClosedEvent`、`ContextRefreshedEvent`等,它们覆盖了应用生命周期中的关键事件。开发人员也可以自定义`ApplicationEvent`的子类来表示自己的业务事件。 为了注册监听...
1. **Spring事件**:Spring事件通常继承自`ApplicationEvent`类,例如`ContextRefreshedEvent`、`ContextStartedEvent`等。开发人员也可自定义事件,只需继承`ApplicationEvent`。 2. **Spring事件源**:事件源是...
} else if (event instanceof ContextRefreshedEvent) { // 刷新事件 System.out.println("refresh 事件触发"); } else if (event instanceof ContextStoppedEvent) { System.out.println("stop 事件触发"); } ...
Spring 提供了以下 5 种标准的事件:上下文更新事件( ContextRefreshedEvent ):在调用 ConfigurableApplicati
* ContextRefreshedEvent:应用程序上下文刷新事件,即应用程序上下文被刷新后会执行onApplicationEvent方法。 * RequestHandledEvent:请求处理事件,即处理请求时会执行onApplicationEvent方法。 这些事件类型都...
在上面的代码中,我们创建了一个HelloWorldApplicationListener类,该类实现了ApplicationListener接口,并指定了要监听的事件类型为ContextRefreshedEvent。在onApplicationEvent方法中,我们输出了应用程序的ID和...
Spring提供了一些预定义的事件,如`ContextRefreshedEvent`(应用上下文刷新事件)、`ContextStartedEvent`(应用上下文启动事件)和`ContextStoppedEvent`(应用上下文停止事件)等。 接下来,我们通常会讨论如何...
实现该接口的类可以监听到Spring容器中发布的各种事件,如`ContextRefreshedEvent`(容器刷新完成)和`ContextClosedEvent`(容器关闭)。使用`@EventListener`注解的方法会被`EventListenerMethodProcessor`处理器解析...
在Spring框架中,监听器(Listener)是一种关键的组件,它们允许开发者在应用程序的特定事件发生时执行相应的处理逻辑。本文将对Spring监听器进行深入浅析,包括其工作原理、源码解析以及如何使用。 首先,Spring...