您好,登錄后才能下訂單哦!
這期內(nèi)容當中小編將會給大家?guī)碛嘘P使用springboot怎么實現(xiàn)事件監(jiān)聽,文章內(nèi)容豐富且以專業(yè)的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。
springboot一種全新的編程規(guī)范,其設計目的是用來簡化新Spring應用的初始搭建以及開發(fā)過程,SpringBoot也是一個服務于框架的框架,服務范圍是簡化配置文件。
定義事件
@Getter public class TestEvent extends ApplicationEvent { private String msg; public TestEvent(Object source, String msg) { super(source); this.msg = msg; } }
定義事件監(jiān)聽(注解方式)
@Component public class TestListen { @EventListener public void testListen(TestEvent event) { System.out.println(event.getMsg()); } }
注意:@Component 注解
發(fā)布事件
@Autowired private ApplicationContext publiser; @GetMapping("test-listen") public void testListen() { for (int i = 0; i < 10; i++) { System.out.println("i = " + i); } publiser.publishEvent(new TestEvent(this, "測試事件監(jiān)聽")); for (int j = 0; j < 10; j++) { System.out.println("j = " + j); } }
測試時執(zhí)行順序:
i循環(huán)
打印"event = [測試事件監(jiān)聽]"
j循環(huán)
異步監(jiān)聽
監(jiān)聽加上@Async注解
@Component public class TestListen { @EventListener @Async public void testListen(TestEvent event) { for (int i = 0; i < 10; i++) { System.out.println("event = [" + event.getMsg() + "]"); } } }
測試時執(zhí)行順序:
i循環(huán)
j循環(huán)
打印"event = [測試事件監(jiān)聽]"
代碼: async
springboot進行事件監(jiān)聽有四種方式:
1.手工向ApplicationContext中添加監(jiān)聽器
2.將監(jiān)聽器裝載入spring容器
3.在application.properties中配置監(jiān)聽器
4.通過@EventListener注解實現(xiàn)事件監(jiān)聽
講到事件監(jiān)聽,這里我們說下自定義事件和自定義監(jiān)聽器類的實現(xiàn)方式:
自定義事件:繼承自ApplicationEvent抽象類,然后定義自己的構(gòu)造器
自定義監(jiān)聽:實現(xiàn)ApplicationListener<T>接口,然后實現(xiàn)onApplicationEvent方法
下面講下4種事件監(jiān)聽的具體實現(xiàn)
方式1.
首先創(chuàng)建MyListener1類
public class MyListener1 implements ApplicationListener<MyEvent> { Logger logger = Logger.getLogger(MyListener1.class); public void onApplicationEvent(MyEvent event) { logger.info(String.format("%s監(jiān)聽到事件源:%s.", MyListener1.class.getName(), event.getSource())); } }
然后在springboot應用啟動類中獲取ConfigurableApplicationContext上下文,裝載監(jiān)聽
@SpringBootApplication public class LisenterApplication { public static void main(String[] args) { ConfigurableApplicationContext context = SpringApplication.run(LisenterApplication.class, args); //裝載監(jiān)聽 context.addApplicationListener(new MyListener1()); } }
方式2.
創(chuàng)建MyListener2類,并使用@Component注解將該類裝載入spring容器中
@Component public class MyListener2 implements ApplicationListener<MyEvent> { Logger logger = Logger.getLogger(MyListener2.class); public void onApplicationEvent(MyEvent event) { logger.info(String.format("%s監(jiān)聽到事件源:%s.", MyListener2.class.getName(), event.getSource())); } }
方式3.
首先創(chuàng)建MyListener3類
public class MyListener3 implements ApplicationListener<MyEvent> { Logger logger = Logger.getLogger(MyListener3.class); public void onApplicationEvent(MyEvent event) { logger.info(String.format("%s監(jiān)聽到事件源:%s.", MyListener3.class.getName(), event.getSource())); } }
然后在application.properties中配置監(jiān)聽
context.listener.classes=com.listener.MyListener3
方式4.
創(chuàng)建MyListener4類,該類無需實現(xiàn)ApplicationListener接口,使用@EventListener裝飾具體方法
@Component public class MyListener4 { Logger logger = Logger.getLogger(MyListener4.class); @EventListener public void listener(MyEvent event) { logger.info(String.format("%s監(jiān)聽到事件源:%s.", MyListener4.class.getName(), event.getSource())); } }
自定義事件代碼如下:
@SuppressWarnings("serial") public class MyEvent extends ApplicationEvent { public MyEvent(Object source) { super(source); } }
進行測試(在啟動類中加入發(fā)布事件的邏輯):
@SpringBootApplication public class LisenterApplication { public static void main(String[] args) { ConfigurableApplicationContext context = SpringApplication.run(LisenterApplication.class, args); //裝載事件 context.addApplicationListener(new MyListener1()); //發(fā)布事件 context.publishEvent(new MyEvent("測試事件.")); } }
啟動后,日志打印如下:
2018-06-15 10:51:20.198 INFO 4628 --- [ main] com.listener.MyListener3 : com.listener.MyListener3監(jiān)聽到事件源:測試事件..
2018-06-15 10:51:20.198 INFO 4628 --- [ main] com.listener.MyListener4 : com.listener.MyListener4監(jiān)聽到事件源:測試事件..
2018-06-15 10:51:20.199 INFO 4628 --- [ main] com.listener.MyListener2 : com.listener.MyListener2監(jiān)聽到事件源:測試事件..
2018-06-15 10:51:20.199 INFO 4628 --- [ main] com.listener.MyListener1 : com.listener.MyListener1監(jiān)
上述就是小編為大家分享的使用springboot怎么實現(xiàn)事件監(jiān)聽了,如果剛好有類似的疑惑,不妨參照上述分析進行理解。如果想知道更多相關知識,歡迎關注億速云行業(yè)資訊頻道。
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。