Spring 的 ApplicationEvent and ApplicationListener
什么是ApplicationContext?
它是Spring的核心,Context我们通常解释为上下文环境,可是理解成容器会更好些。 
ApplicationContext则是应用的容器。
Spring把Bean(object)放在容器中,须要用就通过get方法取出来。
ApplicationEvent
是个抽象类,里面仅仅有一个构造函数和一个长整型的timestamp。
ApplicationListener
是一个接口,里面仅仅有一个onApplicationEvent方法。
所以自己的类在实现该接口的时候,要实装该方法。
假设在上下文中部署一个实现了ApplicationListener接口的bean,
那么每当在一个ApplicationEvent公布到 ApplicationContext时,
这个bean得到通知。事实上这就是标准的Observer设计模式。 
首先创建一个Event事件类:
   1. public class EmailListEvent extends ApplicationEvent {
   2.
   3.     private static final long serialVersionUID = 1L;
   4.     public String address;
   5.     public String text;
   6.
   7.     public EmailListEvent(Object source) {
   8.         super(source);
   9.     }
  10.
  11.     public EmailListEvent(Object source, String address, String text) {
  12.         super(source);
  13.         this.address = address;
  14.         this.text = text;
  15.     }
  16.
  17.     public void print() {
  18.         System.out.println("Hello,Spring Event!!!");
  19.     }
  20. }  
其次创建一个ApplicationListener类:
   1. public class EmailNotifier implements ApplicationListener {
   2.
   3.     public void onApplicationEvent(ApplicationEvent evt) {
   4.         if (evt instanceof EmailListEvent) {
   5.             EmailListEvent emailEvent = (EmailListEvent) evt;
   6.             emailEvent.print();
   7.             System.out.println("the source is:" + emailEvent.getSource());
   8.             System.out.println("the address is:" + emailEvent.address);
   9.             System.out.println("the mail's context is :" + emailEvent.text);
  10.         }
  11.
  12.     }
  13. }  
接着将Listener注冊到Spring的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"
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:tx="http://www.springframework.org/schema/tx"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop-2.0.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx-2.0.xsd"> <bean id="emailListListener" class="spring.event.EmailNotifier"></bean> </beans>
最后创建Demo类:
   1. public class ListenerEventDemo {
   2.
   3.     /**
   4.      * @param args
   5.      */
   6.     public static void main(String[] args) {
   7.         ApplicationContext context = new ClassPathXmlApplicationContext(
   8.                 "SpringEvent.xml");
   9.         EmailListEvent emailListEvent = new EmailListEvent("hello",
  10.                 "helloSpring@sina.com", "this is a test eamil content");
  11.         //在ApplicationContext中公布一个 ApplicationEvent
  12.         context.publishEvent(emailListEvent);
  13.     }
  14.
  15. }  
測试结果:
# Hello,Spring Event!!!
# the source is:hello
# the address is:helloSpring@sina.com
# the mail's context is :this is a test eamil content
Spring 的 ApplicationEvent and ApplicationListener的更多相关文章
- Spring中ApplicationEvent和ApplicationListener封装
		1.测试程序EventTest.java,发布一个事件只需要调用FrameEventHolder.publishEvent()方法即可. package com.junge.spring.event; ... 
- Spring的ApplicationEvent实现
		原理:ApplicationContextAware接口提供了publishEvent方法,实现了Observe(观察者)设计模式的传播机制,实现了对bean的传播.通过ApplicationCont ... 
- Spring事件监听ApplicationListener源码流程分析
		spring的事件机制是基于观察者设计模式的,ApplicationListener#onApplicationEvent(Event)方法,用于对事件的处理 .在容器初始化的时候执行注册到容器中的L ... 
- spring之ApplicationEvent 事件驱动
		什么是ApplicationContext? 它是Spring的核心,Context我们通常解释为上下文环境,但是理解成容器会更好些. ApplicationContext则是应用的容器. Sprin ... 
- Spring事件,ApplicationEvent在业务中的应用
		前言 关于事件驱动模型,百度百科在有明确的解释.在JDK的Util包里抽象了事件驱动,有兴趣的朋友可以自行去看下相关类的定义.Spring事件模型ApplicationEvent是基于JDK里的事件模 ... 
- 利用Spring的ApplicationEvent执行自定义方法
		在Spring中已经定义了五个标准事件,分别介绍如下: 1)ContextRefreshedEvent:当ApplicationContext初始化或者刷新时触发该事件. 2)ContextClose ... 
- web服务启动spring自己主动运行ApplicationListener的使用方法
		我们知道.一般来说一个项目启动时须要载入或者运行一些特殊的任务来初始化系统.通常的做法就是用servlet去初始化.可是servlet在使用spring bean时不能直接注入,还须要在web.xml ... 
- spring boot 之监听器ApplicationListener
		监听器ApplicationListener 就是spring的监听器,能够用来监听事件,典型的观察者模式.ApplicationListener和ContextRefreshedEvent一般都是成 ... 
- Spring监听,ApplicationListener
		import java.util.HashMap; import java.util.Map; import org.apache.commons.lang3.StringUtils; import ... 
随机推荐
- C语言深度剖析-----最终的胜利
			进军C++ 初始OOP 抽象 封装 封装的好处,改名只需改封装 小结 面试题 指针运算 打印11,16,29,28,26 调试经验 printf定义,可变参数无法判断实际参数的类型 安全编程 数组 ... 
- iOS ASIHTTPRequest
			ASIHTTPRequest对CFNetwork API进行了封装,并且使用起来非常简单,用Objective-C编写,可以很好的应用在Mac OS X系统和iOS平台的应用程序中.ASIHTTPRe ... 
- js课程 2-7 for-in循环怎么使用
			js课程 2-7 for-in循环怎么使用 一.总结 一句话总结:用的是in的作用加上for的作用,相当于一个组合技. 1.js中in运算符的作用是什么? 判断一个元素是否在一个集合或者对象中 1.a ... 
- 【心情】Priority_queue容器的用法
			所给的代码最顶端是最小的元素 要改为最顶端是最大的则只需把 friend bool operator<(Node a, Node b) { return a.val > b.val; } ... 
- 【35.29%】【codeforces 557C】Arthur and Table
			time limit per test1 second memory limit per test256 megabytes inputstandard input outputstandard ou ... 
- NET WinForm 开发所见即所得的 IDE 开发环境
			Github 开源:使用 .NET WinForm 开发所见即所得的 IDE 开发环境(Sheng.Winform.IDE)[2.源代码简要说明] GitHub:https://github.co ... 
- 【30.49%】【codeforces 569A】Music
			time limit per test2 seconds memory limit per test256 megabytes inputstandard input outputstandard o ... 
- jQuery中serializeArray方法的使用及对象与字符串的转换
			使用jQuery中的serializeArray()方法可以方便的将表单中的各个信息,转化为多个{name:xx,value:xx}对象的数组, 再使用遍历的方式可以方便的将数组转化为json对象, ... 
- Android中的动画具体解释系列【3】——自己定义动画研究
			在上一篇中我们使用到了位移动画TranslateAnimation,以下我们先来看看TranslateAnimation是怎样实现Animation中的抽象方法的: /* * Copyright (C ... 
- Android自定义组件系列【2】——Scroller类
			在上一篇中介绍了View类的scrollTo和scrollBy两个方法,对这两个方法不太了解的朋友可以先看<自定义View及ViewGroup> scrollTo和scrollBy虽然实现 ... 
