Spring Application Event Example
Spring Application Event
项目结构

工程下载
https://github.com/xiaoheike/SpringApplicationEventExample.git
SportEvent
package nd.esp.com.event;
import org.springframework.context.ApplicationEvent;
public class SportEvent extends ApplicationEvent {
private static final long serialVersionUID = 1L;
public SportEvent(Object source) {
super(source);
}
}
SportEvent是所有体育运动的父类,继承Spring ApplicationEvent,必须实现带参数构造函数,如上述代码所示。带参数构造函数传入参数可用于携带其他的信息。具体在NBAEvent中可以看到作用。
NBAEvent
package nd.esp.com.event;
public class NBAEvent extends SportEvent {
private static final long serialVersionUID = 1L;
private String text;
public NBAEvent(Object source) {
super(source);
}
public NBAEvent(String source, String text) {
super(source);
this.text = text;
}
public String news() {
return text;
}
@Override
public String getSource() {
return String.class.cast(super.getSource());
}
}
NBAEvent主题,用于显示NBA相关信息,上述getSource()方法重写了Spring ApplicationEvent 的父类EventObject,可以用于获得构造函数传入的参数。
SoccerEvent
package nd.esp.com.event;
public class SoccerEvent extends SportEvent {
private static final long serialVersionUID = 1L;
private String text;
public SoccerEvent(String source) {
super(source);
}
public SoccerEvent(Object source, String text) {
super(source);
this.text = text;
}
public String news() {
return text;
}
@Override
public String getSource() {
return String.class.cast(super.getSource());
}
}
SoccerEvent主题,用于显示足球先关信息,和NBAEvent功能类似。
SportEventListener
SportEventListener1
package nd.esp.com.listener;
import nd.esp.com.event.NBAEvent;
import nd.esp.com.event.SoccerEvent;
import nd.esp.com.event.SportEvent;
import org.springframework.context.ApplicationListener;
public class SportEventListener implements ApplicationListener<SportEvent> {
public void onApplicationEvent(SportEvent event) {
if (event instanceof NBAEvent) {
System.out.println("SportEventListener1:" + NBAEvent.class.cast(event).getSource());
}
if (event instanceof SoccerEvent) {
SoccerEvent soccerEvent = SoccerEvent.class.cast(event);
System.out.println("SportEventListener1:" + soccerEvent.getSource() + " " + soccerEvent.news());
}
}
}
SportEventListener2
package nd.esp.com.listener;
import nd.esp.com.event.NBAEvent;
import nd.esp.com.event.SoccerEvent;
import nd.esp.com.event.SportEvent;
import org.springframework.context.ApplicationListener;
public class SportEventListener2 implements ApplicationListener<SportEvent> {
public void onApplicationEvent(SportEvent event) {
if (event instanceof NBAEvent) {
System.out.println("SportEventListener2:" + NBAEvent.class.cast(event).getSource());
}
if (event instanceof SoccerEvent) {
SoccerEvent soccerEvent = SoccerEvent.class.cast(event);
System.out.println("SportEventListener2:" + soccerEvent.getSource() + " " + soccerEvent.news());
}
}
}
SportEventListener是观察者,当有新事件到来会被调用。SportEvent的功能在这里得到体现,通过创建父类,可以同时监控一类相似的主题,比如NBA事件以及足球事件。这样可以少些监听者。可以有多个观察者监听相同的时间,这里是指SportEvent。
SportEventPublisher
package nd.esp.com.publisher;
import nd.esp.com.event.NBAEvent;
import nd.esp.com.event.SoccerEvent;
import nd.esp.com.event.SportEvent;
import org.springframework.beans.BeansException;
import org.springframework.context.ApplicationContext;
import org.springframework.context.ApplicationContextAware;
import org.springframework.context.support.ClassPathXmlApplicationContext;
public class SportEventPublisher implements ApplicationContextAware {
private ApplicationContext applicationEventPulisher = null;
public void setApplicationContext(ApplicationContext applicationContext) throws BeansException {
this.applicationEventPulisher = applicationContext;
}
public void publishEvent(SportEvent sportEvent) {
applicationEventPulisher.publishEvent(sportEvent);
}
public static void main(String[] args) {
String[] xmlConfig = new String[] { "applicationContext.xml" };
// 使用ApplicationContext来初始化系统
ApplicationContext context = new ClassPathXmlApplicationContext(xmlConfig);
SportEventPublisher publisher = (SportEventPublisher) context.getBean("applicationContextAware");
publisher.publishEvent(new NBAEvent("NBA sport:骑士队获得总冠军"));
publisher.publishEvent(new SoccerEvent("Scorrer sport:标题:中国获得世界杯冠军", "中国击败世界各国,取得10连冠"));
}
}
SportEventPublisher当有新的时间时,由它发布,这个类继承Spring ApplicationContextAware,能够自动注入ApplicationContext对象。这个类实现了主题的通知功能。
appicationContext.xml(单线程)
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:jdbc="http://www.springframework.org/schema/jdbc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/jdbc http://www.springframework.org/schema/jdbc/spring-jdbc-3.0.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">
<bean id="applicationContextAware" class="nd.esp.com.publisher.SportEventPublisher"></bean>
<bean id="applicationListener1" class="nd.esp.com.listener.SportEventListener1"></bean>
<bean id="applicationListener2" class="nd.esp.com.listener.SportEventListener2"></bean>
</beans>
这两个bean是必须的,id可以任意,spring针对SportEventPublisher肯定是有经过特殊处理的,要不然该类中的ApplicationEventPublisher无法注入对应类。
这样的配置默认是采用单线程,为了提高效率可以使用多线程。修改application.xml文件如下即可。
applicationContext.xml(多线程)
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:jdbc="http://www.springframework.org/schema/jdbc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/jdbc http://www.springframework.org/schema/jdbc/spring-jdbc-3.0.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">
<bean id="applicationContextAware" class="nd.esp.com.publisher.SportEventPublisher"></bean>
<bean id="applicationListener1" class="nd.esp.com.listener.SportEventListener1"></bean>
<bean id="applicationListener2" class="nd.esp.com.listener.SportEventListener2"></bean>
<bean id="taskExecutor"
class="org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor">
<property name="corePoolSize" value="5" />
<property name="keepAliveSeconds" value="30000" />
<property name="maxPoolSize" value="1000" />
<property name="queueCapacity" value="200" />
</bean>
<bean id="applicationEventMulticaster"
class="org.springframework.context.event.SimpleApplicationEventMulticaster">
<property name="taskExecutor" ref="taskExecutor" />
</bean>
</beans>
idapplicationEventMulticaster不能够改变,猜测是spring需要根据这个id注入对象。
SimpleApplicationEventMulticaster
多线程或者单线程可以通过该类中的方法
@SuppressWarnings("unchecked")
public void multicastEvent(final ApplicationEvent event) {
for (final ApplicationListener listener : getApplicationListeners(event)) {
Executor executor = getTaskExecutor();
if (executor != null) {
executor.execute(new Runnable() {
public void run() {
listener.onApplicationEvent(event);
}
});
}
else {
listener.onApplicationEvent(event);
}
}
}
多线程产经下变量executor的值不为空,单线程则相反。
运行结果##

教程结束,感谢阅读。
欢迎转载,但请注明本文链接,谢谢。
2016.5.12 17:49
Spring Application Event Example的更多相关文章
- Spring 事件:Application Event
Spring Application Event Spring 的事件(Application Event)为 Bean 与 Bean 之间的消息通信提供了支持.当一个 Bean 处理完一个任务之后, ...
- Spring Boot实战笔记(四)-- Spring常用配置(事件Application Event)
一.事件(Application Event) Spring的事件为Bean和Bean之间的消息通信提供了支持.当一个Bean处理完一个任务之后,希望另一个Bean知道并能做相应的处理,这时我们就需要 ...
- spring boot: 一般注入说明(五) @Component, application event事件为Bean与Bean之间通信提供了支持
spring的事件,为Bean与Bean之间通信提供了支持,当一个Bean处理完成之后,希望另一个Bean知道后做相应的事情,这时我们就让另外一个Bean监听当前Bean所发送的事件. spring的 ...
- 从命令模式的维度理解Spring 之Application Event
Spring的事件(Application Event)为Bean与Bean之间的信息通讯提供了支持.当一个Bean处理完一个任务之后,希望另一Bean指定并能做相应的处理,这时我们就需要让另外一个B ...
- Spring Session event事件分析
1. org.apache.catalina.session.StandardSession 这是servlet-api jar包中的一个类.是session接口的标准实现.当session创建的时候 ...
- SpringBoot -- 事件(Application Event)
Spring的事件为Bean与Bean之间的消息通信提供了支持,当一个Bean处理完一个任务之后,希望另外一个Bean知道并能做相应的处理,这时我们就需要让一个Bean监听当前Bean所发送的事件. ...
- spring 事件(Application Event)
spring 事件为bean 与 bean之间传递消息.一个bean处理完了希望其余一个接着处理.这时我们就需要其余的一个bean监听当前bean所发送的事件. spring事件使用步骤如下: 1.先 ...
- Spring应用事件(Application Event)
Spring的事件为Bean与Bean的消息通信提供的支持.当一个Bean处理完了一个任务以后,希望另一个Bean知道并能做出相应的处理,这是我们就需要让另一个Bean监听当前Bean所发送的事件. ...
- 事件(Application Event)
Spring的事件(Appllcation Event)为Bean与Bean之间的消息通信提供了支持.当一个Bean处理完一个任务后,希望另一个Bean知道并能做相应的处理,这种情况可以让另一个Bea ...
随机推荐
- 【SPI】Polling Interrupt DMA
三種將資料在I/O間傳送的方法有 1. Polling2. Interrupt-driven I/O3. DMA(Direct Memory Access) Polling:最簡單的方式讓I/O de ...
- myeclipse 快捷键大全
转自:http://q.cnblogs.com/q/47190/ Technorati 标记: Shortcut keys Ctrl+1 快速修复(最经典的快捷键,就不用多说了)Ctrl+D: 删除当 ...
- 1、jvm的体系结构
jvm包括两子系统两组件 a.两子系统:Class Loader子系统,Execution engine子系统 b.两组件:Runtime Date Area 和 Native Interface
- .Net模拟提交表单
2016-09-0210:49:20 以中邮速递API为服务接口,由于提交方式为表单提交,我要获取返回值来处理其他业务,所以一开始尝试采用Js后台获取返回值,但是涉及到跨域请求限制问题,那边服务端接口 ...
- java中Jbutton常用设置
. 对JButton大小的设置 ——因为JButen是属于小器件类型的,所以一般的setSize不能对其惊醒大小的设置,所以一般我们用 button.setPreferredSize( ...
- js报错:email() is not a function
email() is not a function 明明是一个函数,但火狐控制台真J.. 由于JSP文件是别人写好直接使用的,所以,来回测试,折腾!最后,没办法,一段一段代码删除测试,才发现.有for ...
- win7 安装JDK7和JDK8后,卸载JDK8后出错
这是本人学习Java过程中遇到的一些问题和解决方法,在此记录,方便本人查看,解决他人疑惑. 本人win7 x64旗舰版,同时安装了JDK7和JDK8,卸载了JDK8之后,cmd命令行输入:java - ...
- php 文件操作
$fn="e:\debug.txt"; if(is_writable($fn)==false){ die("不能写入"); } file_put_content ...
- nginx+tomcat+dubbo单机部署多台dubbo应用
前面的博客已经介绍如何使用nginx+tomcat,今天做的是如何在单台服务器上如何部署多台dubbo 应用的集群. 由于在项目中遇到了这个问题,今天就把它记录下来. 1.
- vim笔记2
用vim 快两年了 看过教程也不少,总的来说还是得自己多练习,当自己觉得有需要的时候,再添加功能.这里分享个看过的最好的教程,出自贴吧的某个朋友,写的很好 零 学会盲打 壹 配置文件先从最简开始,在 ...