标签:同步 lock 模块 injection not ota 停止 依赖 contexts
Spring中的事件是一个ApplicationEvent
类的子类,由实现ApplicationEventPublisherAware
接口的类发送,实现ApplicationListener
接口的类监听。
Spring中已经定义了一组内置事件,这些事件由ApplicationContext
容器发出。
例如,ContextStartedEvent
在ApplicationContext
启动时发送,ContextStoppedEvent
在ApplicationContext
停止时发送。
实现ApplicationListener
的类可以监听事件。
Spring的事件是同步的(单线程的),会被阻塞。
要监听ApplicationContext
事件,监听类应该实现ApplicationListener
接口并重写onApplicationEvent()
方法。
ContextStartEventHandler.java
import org.springframework.context.ApplicationListener;
import org.springframework.context.event.ContextStartedEvent;
public class ContextStartEventHandler implements ApplicationListener<ContextStartedEvent>{
@Override
public void onApplicationEvent(ContextStartedEvent event) {
System.out.println("ApplicationContext 启动... ");
}
}
Test.java
import org.springframework.context.ApplicationContext;
import org.springframework.context.ConfigurableApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
public class Test {
public static void main(String[] args) {
// ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml");
// fire the start event.
// ((ConfigurableApplicationContext) context).start();
ConfigurableApplicationContext context = new ClassPathXmlApplicationContext("beans.xml");
// fire the start event.
context.start();
// ...
}
}
在XML配置文件中,将该类为声明为Bean,以便Spring容器加载该Bean,并向其传送事件。
<bean id="contextStartEventHandler" class="ContextStartEventHandler"></bean>
标签:同步 lock 模块 injection not ota 停止 依赖 contexts
原文地址:https://www.cnblogs.com/haibianren/p/11660775.html