1. 首页
  2. Spring教程

Spring教程28篇:Spring 中的自定义事件

Spring 中的自定义事件

编写和发布自己的自定义事件有许多步骤。按照在这一章给出的说明来编写,发布和处理自定义 Spring 事件。

步骤 描述
1 创建一个名称为SpringExample的项目,并且在创建项目的src文件夹中创建一个包com.tutorialspoint。
2 使用AddExternalJARs选项,添加所需的Spring库,解释见SpringHelloWorldExample章节。
3 通过扩展ApplicationEvent,创建一个事件类CustomEvent。这个类必须定义一个默认的构造函数,它应该从ApplicationEvent类中继承的构造函数。
4 一旦定义事件类,你可以从任何类中发布它,假定EventClassPublisher实现了ApplicationEventPublisherAware。你还需要在XML配置文件中声明这个类作为一个bean,之所以容器可以识别bean作为事件发布者,是因为它实现了ApplicationEventPublisherAware接口。
5 发布的事件可以在一个类中被处理,假定EventClassHandler实现了ApplicationListener接口,而且实现了自定义事件的onApplicationEvent方法。
6 在src文件夹中创建bean的配置文件Beans.xml和MainApp类,它可以作为一个Spring应用程序来运行。
7 最后一步是创建的所有Java文件和Bean配置文件的内容,并运行应用程序,解释如下所示。

这个是 CustomEvent.java 文件的内容:

  package com.tutorialspoint;
    import org.springframework.context.ApplicationEvent;
    public class CustomEvent extends ApplicationEvent{ 
       public CustomEvent(Object source) {
          super(source);
       }
       public String toString(){
          return "My Custom Event";
       }
    }

下面是 CustomEventPublisher.java 文件的内容:

  package com.tutorialspoint;
    import org.springframework.context.ApplicationEventPublisher;
    import org.springframework.context.ApplicationEventPublisherAware;
    public class CustomEventPublisher 
       implements ApplicationEventPublisherAware {
       private ApplicationEventPublisher publisher;
       public void setApplicationEventPublisher
                  (ApplicationEventPublisher publisher){
          this.publisher = publisher;
       }
       public void publish() {
          CustomEvent ce = new CustomEvent(this);
          publisher.publishEvent(ce);
       }
    }

下面是 CustomEventHandler.java 文件的内容:

  package com.tutorialspoint;
    import org.springframework.context.ApplicationListener;
    public class CustomEventHandler 
       implements ApplicationListener<CustomEvent>{
       public void onApplicationEvent(CustomEvent event) {
          System.out.println(event.toString());
       }
    }

下面是 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");    
          CustomEventPublisher cvp = 
          (CustomEventPublisher) context.getBean("customEventPublisher");
          cvp.publish();  
          cvp.publish();
       }
    }

下面是配置文件 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="customEventHandler" 
          class="com.tutorialspoint.CustomEventHandler"/>

       <bean id="customEventPublisher" 
          class="com.tutorialspoint.CustomEventPublisher"/>

    </beans>

一旦你完成了创建源和 bean 的配置文件后,我们就可以运行该应用程序。如果你的应用程序一切都正常,将输出以下信息:

  My Custom Event
    My Custom Event

作者:陈

来源:https://www.w3cschool.cn/wkspring/7jho1ict.html


看完两件小事

如果你觉得这篇文章对你挺有启发,我想请你帮我两个小忙:

  1. 关注我们的 GitHub 博客,让我们成为长期关系
  2. 把这篇文章分享给你的朋友 / 交流群,让更多的人看到,一起进步,一起成长!
  3. 关注公众号 「方志朋」,公众号后台回复「666」 免费领取我精心整理的进阶资源教程
  4. JS中文网,Javascriptc中文网是中国领先的新一代开发者社区和专业的技术媒体,一个帮助开发者成长的社区,是给开发者用的 Hacker News,技术文章由为你筛选出最优质的干货,其中包括:Android、iOS、前端、后端等方面的内容。目前已经覆盖和服务了超过 300 万开发者,你每天都可以在这里找到技术世界的头条内容。

    本文著作权归作者所有,如若转载,请注明出处

    转载请注明:文章转载自「 Java极客技术学习 」https://www.javajike.com

    标题:Spring教程28篇:Spring 中的自定义事件

    链接:https://www.javajike.com/article/1999.html

« Spring教程29篇:Spring 框架的 AOP
Spring教程27篇:Spring 中的事件处理»

相关推荐

QR code