Spring 中的事件处理


您在所有章节中都看到,Spring 的核心是 ApplicationContext 它管理 bean 的完整生命周期。当加载 bean 时,ApplicationContext 会发布某些类型的事件。例如,当上下文启动时发布ContextStartedEvent ,当上下文停止时发布ContextStoppedEvent 。

ApplicationContext中的事件处理是通过ApplicationEvent类和ApplicationListener接口提供的。因此,如果一个 bean 实现了ApplicationListener,那么每次将ApplicationEvent发布到 ApplicationContext 时,都会通知该 bean。

Spring 提供以下标准事件 -

先生。 Spring 内置事件和描述
1

上下文刷新事件

当ApplicationContext初始化或刷新时,会发布此事件。也可以使用ConfigurableApplicationContext接口上的refresh() 方法引发此问题。

2

上下文启动事件

当使用ConfigurableApplicationContext接口上的 start() 方法启动ApplicationContext时,会发布此事件。您可以轮询数据库,也可以在收到此事件后重新启动任何已停止的应用程序。

3

上下文停止事件

当使用ConfigurableApplicationContext接口上的 stop() 方法停止ApplicationContext时,会发布此事件。您可以在收到此事件后进行所需的家务工作。

4

上下文关闭事件

当使用ConfigurableApplicationContext接口上的 close() 方法关闭ApplicationContext时,会发布此事件。封闭环境已达到其生命的终点;它无法刷新或重新启动。

5

请求处理事件

这是一个特定于 Web 的事件,告诉所有 Bean 已处理 HTTP 请求。

Spring 的事件处理是单线程的,因此如果发布了一个事件,除非所有接收者都收到消息,否则进程将被阻塞并且流程将不会继续。因此,如果要使用事件处理,则在设计应用程序时应小心。

监听上下文事件

要监听上下文事件,bean 应该实现ApplicationListener接口,该接口只有一个方法onApplicationEvent()。因此,让我们编写一个示例来了解事件如何传播以及如何让代码根据某些事件执行所需的任务。

让我们准备好一个可用的 Eclipse IDE,并按照以下步骤创建一个 Spring 应用程序 -

描述
1 创建一个名为SpringExample的项目,并在创建的项目中的src文件夹下创建一个包com.tutorialspoint 。
2 使用“添加外部 JAR”选项添加所需的 Spring 库,如Spring Hello World 示例一章中所述。
3 com.tutorialspoint包下创建 Java 类HelloWorldCStartEventHandlerCStopEventHandlerMainApp
4 src文件夹下创建Beans配置文件Beans.xml
5 最后一步是创建所有 Java 文件和 Bean 配置文件的内容并运行应用程序,如下所述。

这是HelloWorld.java文件的内容

package com.tutorialspoint;

public class HelloWorld {
   private String message;

   public void setMessage(String message){
      this.message  = message;
   }
   public void getMessage(){
      System.out.println("Your Message : " + message);
   }
}

以下是CStartEventHandler.java文件的内容

package com.tutorialspoint;

import org.springframework.context.ApplicationListener;
import org.springframework.context.event.ContextStartedEvent;

public class CStartEventHandler 
   implements ApplicationListener<ContextStartedEvent>{

   public void onApplicationEvent(ContextStartedEvent event) {
      System.out.println("ContextStartedEvent Received");
   }
}

以下是CStopEventHandler.java文件的内容

package com.tutorialspoint;

import org.springframework.context.ApplicationListener;
import org.springframework.context.event.ContextStoppedEvent;

public class CStopEventHandler 
   implements ApplicationListener<ContextStoppedEvent>{

   public void onApplicationEvent(ContextStoppedEvent event) {
      System.out.println("ContextStoppedEvent Received");
   }
}

以下是MainApp.java文件的内容

package com.tutorialspoint;

import org.springframework.context.ConfigurableApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

public class MainApp {
   public static void main(String[] args) {
      ConfigurableApplicationContext context = 
         new ClassPathXmlApplicationContext("Beans.xml");

      // Let us raise a start event.
      context.start();
	  
      HelloWorld obj = (HelloWorld) context.getBean("helloWorld");
      obj.getMessage();

      // Let us raise a stop event.
      context.stop();
   }
}

以下是配置文件Beans.xml

<?xml version = "1.0" encoding = "UTF-8"?>

<beans xmlns = "http://www.springframework.org/schema/beans"
   xmlns:xsi = "http://www.w3.org/2001/XMLSchema-instance"
   xsi:schemaLocation = "http://www.springframework.org/schema/beans
   http://www.springframework.org/schema/beans/spring-beans-3.0.xsd">

   <bean id = "helloWorld" class = "com.tutorialspoint.HelloWorld">
      <property name = "message" value = "Hello World!"/>
   </bean>

   <bean id = "cStartEventHandler" class = "com.tutorialspoint.CStartEventHandler"/>
   <bean id = "cStopEventHandler" class = "com.tutorialspoint.CStopEventHandler"/>

</beans>

创建完源文件和 bean 配置文件后,让我们运行该应用程序。如果您的应用程序一切正常,它将打印以下消息 -

ContextStartedEvent Received
Your Message : Hello World!
ContextStoppedEvent Received

如果您愿意,您可以发布自己的自定义事件,稍后您可以捕获相同的事件以对这些自定义事件采取任何操作。如果您有兴趣编写自己的自定义事件,可以查看Spring 中的自定义事件。