Springboot-Listener(springboot的事件监听的4…
2018-11-13 07:34:43来源:博客园 阅读 ()
springboot事件监听的4种方式
第1种:
1.自定义事件MyApplicationEvent继承ApplicationEvent
import org.springframework.context.ApplicationEvent;
/**
* Created by Administrator on 2018\11\13 0013.
* 自定义事件继承ApplicationEvent
*/
public class MyApplicationEvent extends ApplicationEvent {
public MyApplicationEvent(Object source) {
super(source);
}
}
2.定义一个事件监听器MyApplicationListener实现ApplicationListener接口
public class MyApplicationListener implements ApplicationListener<MyApplicationEvent>{
@Override
public void onApplicationEvent(MyApplicationEvent event) {
System.out.println("接收到事件:"+event.getClass());
}
}
3.测试运行
@SpringBootApplication
public class ApplicationDemo {
public static void main(String[] args) {
//创建一个可执行的spring应用程序
SpringApplication application = new SpringApplication(ApplicationDemo.class);
//配置事件监听器
application.addListeners(new MyApplicationListener());
//配置应用程序上下文
ConfigurableApplicationContext context =application.run(args);
//发布事件
context.publishEvent(new MyApplicationEvent(new Object()));
//关闭监视器
context.close();
}
}
第2种:
在第1种的基础上直接在MyApplicationListener类上加上@Component注解,纳入spring容器管理
@SpringBootApplication
public class ApplicationDemo {
public static void main(String[] args) {
//创建一个可执行的spring应用程序
SpringApplication application = new SpringApplication(ApplicationDemo.class);
//配置事件监听器
//application.addListeners(new MyApplicationListener());
//配置应用程序上下文
ConfigurableApplicationContext context =application.run(args);
//发布事件
context.publishEvent(new MyApplicationEvent(new Object()));
//关闭监视器
context.close();
}
}
第3种:
在application.properties配置文件中配置context.listener.classes=您的包路径.MyApplicationListener
DelegatingApplicationListener 委派监听器 对配置文件进行解析,得到监听器集合,注入Spring容器
第4种:
使用@EventListener注解
@Component
public class MyEventHandle {
/**
* 参数任意(为Object)的时候所有事件都会监听到
* 所有,该参数事件,或者其子事件(子类)都可以接收到
*/
@EventListener
public void event(Object event){
System.out.println("MyEventHandle 接收到事件:" + event.getClass());
}
}
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
下一篇:mybatis逆向工程
- springboot2配置JavaMelody与springMVC配置JavaMelody 2020-06-11
- SpringBoot 2.3 整合最新版 ShardingJdbc + Druid + MyBatis 2020-06-11
- 掌握SpringBoot-2.3的容器探针:实战篇 2020-06-11
- nacos~配置中心功能~springboot的支持 2020-06-10
- SpringBoot + Vue + ElementUI 实现后台管理系统模板 -- 后 2020-06-10
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash