`
tjukk
  • 浏览: 45314 次
  • 性别: Icon_minigender_1
  • 来自: 天津
社区版块
存档分类
最新评论

Spring 的 ApplicationEvent and ApplicationListener

阅读更多

什么是ApplicationContext? 
它是Spring的核心,Context我们通常解释为上下文环境,但是理解成容器会更好些。 
ApplicationContext则是应用的容器。

Spring把Bean(object)放在容器中,需要用就通过get方法取出来。

ApplicationEvent

是个抽象类,里面只有一个构造函数和一个长整型的timestamp。

ApplicationListener

是一个接口,里面只有一个onApplicationEvent方法。

所以自己的类在实现该接口的时候,要实装该方法。

如果在上下文中部署一个实现了ApplicationListener接口的bean,

那么每当在一个ApplicationEvent发布到 ApplicationContext时,
这个bean得到通知。其实这就是标准的Observer设计模式。

首先创建一个Event事件类:

 

[java] view plaincopy
 
  1.  1public class EmailListEvent extends ApplicationEvent {    
  2.  2.     
  3.  3.     private static final long serialVersionUID = 1L;    
  4.  4.     public String address;    
  5.  5.     public String text;    
  6.  6.     
  7.  7.     public EmailListEvent(Object source) {    
  8.  8.         super(source);    
  9.  9.     }    
  10. 10.     
  11. 11.     public EmailListEvent(Object source, String address, String text) {    
  12. 12.         super(source);    
  13. 13.         this.address = address;    
  14. 14.         this.text = text;    
  15. 15.     }    
  16. 16.     
  17. 17.     public void print() {    
  18. 18.         System.out.println("Hello,Spring Event!!!");    
  19. 19.     }    
  20. 20. }    



 

其次创建一个ApplicationListener类:

 

[java] view plaincopy
 
  1.  1public class EmailNotifier implements ApplicationListener {    
  2.  2.     
  3.  3.     public void onApplicationEvent(ApplicationEvent evt) {    
  4.  4.         if (evt instanceof EmailListEvent) {    
  5.  5.             EmailListEvent emailEvent = (EmailListEvent) evt;    
  6.  6.             emailEvent.print();    
  7.  7.             System.out.println("the source is:" + emailEvent.getSource());    
  8.  8.             System.out.println("the address is:" + emailEvent.address);    
  9.  9.             System.out.println("the mail's context is :" + emailEvent.text);    
  10. 10.         }    
  11. 11.     
  12. 12.     }    
  13. 13. }    



 

接着将Listener注册到Spring的xml文件中:

 

[html] view plaincopy
 
  1. <?xml version="1.0" encoding="UTF-8"?>    
  2.  <beans xmlns="http://www.springframework.org/schema/beans"    
  3.           xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"    
  4.           xmlns:aop="http://www.springframework.org/schema/aop"    
  5.           xmlns:tx="http://www.springframework.org/schema/tx"    
  6.           xsi:schemaLocation="http://www.springframework.org/schema/beans   
  7.           http://www.springframework.org/schema/beans/spring-beans-2.0.xsd    
  8.           http://www.springframework.org/schema/aop   
  9.           http://www.springframework.org/schema/aop/spring-aop-2.0.xsd    
  10.           http://www.springframework.org/schema/tx   
  11.           http://www.springframework.org/schema/tx/spring-tx-2.0.xsd">    
  12.     
  13.      <bean id="emailListListener" class="spring.event.EmailNotifier"></bean>    
  14.         
  15. </beans>    



 

最后创建Demo类:

 

[java] view plaincopy
 
  1.  1public class ListenerEventDemo {    
  2.  2.     
  3.  3.     /**  
  4.  4.      * @param args  
  5.  5.      */    
  6.  6.     public static void main(String[] args) {    
  7.  7.         ApplicationContext context = new ClassPathXmlApplicationContext(    
  8.  8.                 "SpringEvent.xml");    
  9.  9.         EmailListEvent emailListEvent = new EmailListEvent("hello",    
  10. 10.                 "helloSpring@sina.com""this is a test eamil content");    
  11. 11.         //在ApplicationContext中发布一个 ApplicationEvent    
  12. 12.         context.publishEvent(emailListEvent);    
  13. 13.     }    
  14. 14.     
  15. 15. }    



 

测试结果:

[plain] view plaincopy
 
  1. # Hello,Spring Event!!!    
  2. # the source is:hello    
  3. # the address is:helloSpring@sina.com    
  4. # the mail's context is :this is a test eamil content    
分享到:
评论

相关推荐

    Spring的ApplicationEvent事件和监听器的测试Demo

    在Spring中,这可以通过实现`ApplicationListener`接口来完成。监听器将接收到`ApplicationEvent`的实例,并在其`onApplicationEvent`方法中处理事件。 ```java @Component public class CustomEventListener ...

    SpringBoot事件发布及订阅详解含代码示例(值得珍藏)

    Spring Boot事件处理基于Spring框架的ApplicationEvent和ApplicationListener接口。当一个事件发生时,Spring会创建一个ApplicationEvent对象并将其发布到所有注册的ApplicationListener。这种设计模式被称为观察者...

    Spring的配置以及事件注入

    Spring提供了ApplicationEvent和ApplicationListener接口来实现事件处理。当你有一个事件需要在整个应用中传播时,可以创建一个自定义的事件类,继承自ApplicationEvent。例如: ```java public class CustomEvent ...

    spring 事件处理

    Spring事件处理的核心类有三个:ApplicationEvent、ApplicationEventPublisher和ApplicationListener。ApplicationEvent是所有自定义事件的基类,我们通常会继承它来创建自己的事件类。ApplicationEventPublisher...

    详解Spring事件驱动模型

    public class CustomEventListener implements ApplicationListener&lt;CustomEvent&gt; { @Override public void onApplicationEvent(CustomEvent event) { System.out.println("接收到事件:" + event.getEventData()...

    Spring面试题(2024最新版)-重点.docx

    - Spring 提供了ApplicationEvent和ApplicationListener接口,用于在容器内发布和监听事件。 8. **Spring 应用组件** - 包括Bean、Bean工厂、应用上下文等。 9. **Spring IOC 容器** - 管理Bean的生命周期和...

    spring事件机制

    事件监听器则是实现了`ApplicationListener`接口的类,它们会订阅感兴趣的事件,并在事件被发布时接收到通知。 创建自定义事件很简单,只需要创建一个新的Java类继承`ApplicationEvent`,并提供构造函数以传递事件...

    boot-example-event-2.0.5

    Spring提供了一种简单的方式,通过实现ApplicationListener接口或者使用@Component加上@EventListener注解来定义监听器: 1. 实现ApplicationListener接口: ```java @Component public class CustomEventListener...

    springboot监听方法多实现demo.zip

    而监听事件的方法则由`ApplicationListener`接口实现。下面我们将深入探讨如何在Spring Boot中实现多个监听方法以及相关的知识点。 1. **创建事件**:首先,我们需要定义一个自定义的事件类,继承自`...

    java study2

    例如,Spring框架提供了ApplicationEvent和ApplicationListener接口,用于在应用程序上下文中发布和监听自定义事件。此外,安装和配置EDA工具,如Apache Kafka或者RabbitMQ,需要了解其安装步骤、配置文件设置,以及...

    spring-events-test:开发项目以展示基于 Spring 事件的发布者和订阅者

    核心概念包括事件(`ApplicationEvent`)、事件发布者(`ApplicationEventPublisher`)和事件监听器(`ApplicationListener`)。 ### 2. 事件(`ApplicationEvent`) `ApplicationEvent`是Spring框架提供的基类,...

Global site tag (gtag.js) - Google Analytics