Spring 的监听事件 ApplicationListener 和 ApplicationEvent 用法
Posted hanguocai
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring 的监听事件 ApplicationListener 和 ApplicationEvent 用法相关的知识,希望对你有一定的参考价值。
spring事件(application event)为Bean与Bean之间的消息通信添加了支持,当一个Bean处理完一个任务之后,希望另一个Bean知道并能做相应的处理,这时我们就需要另外一个Bean监听当前Bean所发送的事件。
spring的事件需要遵循以下流程:
(1)自定义事件:继承ApplicationEvent
(2)定义事件监听器:实现ApplicationListener
(3)使用容器发布事件
下面是demo
事件类
/***
*
* @ClassName(类名) : DemoEvent(自定义事件)
* @Description(描述) : spring的event为bean和bean之间的消息通信提供了支持,可以用一个bean监听当前的bean所发送的事件
* @author(作者) :吴桂镇
* @date (开发日期) :2017年11月22日 下午3:30:04
*
*/
public class DemoEvent extends ApplicationEvent{
private static final long serialVersionUID = 1L;
private String msg;
public void sysLog() {
System.out.println(msg);
}
public DemoEvent(Object source,String msg) {
super(source);
this.setMsg(msg);
}
public String getMsg() {
return msg;
}
public void setMsg(String msg) {
this.msg = msg;
}
}
监听类
/***
*
* @ClassName(类名) : demoListener
* @Description(描述) : 事件监听器
* 实现ApplicationListener并制定监听的事件类型
* @author(作者) :吴桂镇
* @date (开发日期) :2017年11月22日 下午3:35:37
*
*/
@Component
public class demoListener implements ApplicationListener<DemoEvent>{
/***
* 对消息进行接受处理
*/
@Override
public void onApplicationEvent(DemoEvent event) {
String msg = event.getMsg();
System.out.println("demoListener接受到了demoPublisher发布的消息:"+msg);
}
}
发布类
/***
*
* @ClassName(类名) : DemoPublisher
* @Description(描述) : 事件发布类
* @author(作者) :吴桂镇
* @date (开发日期) :2017年11月22日 下午3:41:13
*
*/
@Component
public class DemoPublisher {
@Autowired
ApplicationContext context;
public void published() {
DemoEvent event = new DemoEvent(this, "发布成功!");
System.out.println("发部event:"+event);
context.publishEvent(event);
}
}
测试类
@Configuration
@ComponentScan({"com.wugz.app"})
public class EventConfig {
public static void main(String[] args) {
AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext(EventConfig.class);
DemoPublisher publisher = context.getBean(DemoPublisher.class);
publisher.published();
context.close();
}
}
以上是关于Spring 的监听事件 ApplicationListener 和 ApplicationEvent 用法的主要内容,如果未能解决你的问题,请参考以下文章