首頁 > Java > java教程 > 主體

springboot 事件監聽的介紹(附程式碼)

不言
發布: 2019-04-12 10:36:06
轉載
3653 人瀏覽過

這篇文章帶給大家的內容是關於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);
   }
}
登入後複製

測試時執行順序:

  1. #i循環
  2. 列印"event = [測試事件監聽]"
  3. 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() + "]");
       }
   }
}
登入後複製

測試時執行順序:

  1. i循環
  2. j循環
  3. 列印"event = [測試事件監聽]"

以上是springboot 事件監聽的介紹(附程式碼)的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:segmentfault.com
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板