這篇文章帶給大家的內容是關於springboot 事件監聽的介紹(附程式碼),有一定的參考價值,有需要的朋友可以參考一下,希望對你有幫助。
定義事件
@Getter public class TestEvent extends ApplicationEvent { private String msg; public TestEvent(Object source, String msg) { super(source); this.msg = msg; } }
定義事件監聽(註解方式)
@Component public class TestListen { @EventListener public void testListen(TestEvent event) { System.out.println(event.getMsg()); } }
注意:@Component 註解
發布事件
@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, "测试事件监听")); for (int j = 0; j < 10; j++) { System.out.println("j = " + j); } }
測試時執行順序:
非同步監聽
#監聽加上@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() + "]"); } } }
測試時執行順序:
以上是springboot 事件監聽的介紹(附程式碼)的詳細內容。更多資訊請關注PHP中文網其他相關文章!