码迷,mamicode.com
首页 > 编程语言 > 详细

spring事件

时间:2016-11-03 23:05:46      阅读:272      评论:0      收藏:0      [点我收藏+]

标签:nconf   lis   publish   nap   return   object   使用   one   can   

spring的事件为bean与bean之间的通信提供了支持,当一个bean处理完一个任务后,希望另一个bean知道并做相应的处理,这时,我们就需要让另一个bean监听当前bean所发送的事件

  步骤:

    1:自定义事件,继承ApplicationEvent 实现方法

    2:定义事件监听器,实现ApplicationListener 实现方法

    3:使用容器发布类,比如:ApplicationContext的publishEvent方法

代码如下:

  自定义事件

public class DemoEvent extends ApplicationEvent{
private String msg;
public DemoEvent(Object source) {
super(source);
}
public DemoEvent(Object source, String msg) {
super(source);
this.msg = msg;
}
public String getMsg() {
return msg;
}
public void setMsg(String msg) {
this.msg = msg;
}
}

自定义事件监听器

@Component
public class DemoEventListener implements ApplicationListener<DemoEvent>{

public void onApplicationEvent(DemoEvent demoEvent) {
String msg=demoEvent.getMsg();
System.out.println("自定义事件bean被创建了:"+msg);
}
}

使用容器发布事件

@Component
public class DemoEventPublish {
@Autowired
private ApplicationContext context;
public void publish(String msg){
this.context.publishEvent(new DemoEvent(this, msg));
}
}

@Configuration
@ComponentScan
public class DemoEventConfig {

}

public class DemoEventMain {
public static void main(String[] args) {
AnnotationConfigApplicationContext context=
new AnnotationConfigApplicationContext(DemoEventConfig.class);
DemoEventPublish bean = context.getBean(DemoEventPublish.class);
bean.publish("hello applicationContext Event");
}
}

运行结果:

  自定义事件bean被创建了:hello applicationContext Event

 

spring事件

标签:nconf   lis   publish   nap   return   object   使用   one   can   

原文地址:http://www.cnblogs.com/zhangshaobin/p/6028546.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!