日日操夜夜添-日日操影院-日日草夜夜操-日日干干-精品一区二区三区波多野结衣-精品一区二区三区高清免费不卡

公告:魔扣目錄網為廣大站長提供免費收錄網站服務,提交前請做好本站友鏈:【 網站目錄:http://www.ylptlb.cn 】, 免友鏈快審服務(50元/站),

點擊這里在線咨詢客服
新站提交
  • 網站:51998
  • 待審:31
  • 小程序:12
  • 文章:1030137
  • 會員:747

Spring Event 業務解耦神器,大大提高可擴展性,刷爆了!

一、前言

ApplicationContext 中的事件處理是通過 ApplicationEvent 類和 ApplicationListener 接口提供的。如果將實現了 ApplicationListener 接口的 bean 部署到容器中,則每次將 ApplicationEvent 發布到ApplicationContext 時,都會通知到該 bean,這簡直是典型的觀察者模式。設計的初衷就是為了系統業務邏輯之間的解耦,提高可擴展性以及可維護性。

Spring 中提供了以下的事件:

Spring Event 業務解耦神器,大大提高可擴展性,刷爆了!

 

二、ApplicationEvent 與 ApplicationListener 應用

1.實現

自定義事件類,基于 ApplicationEvent 實現擴展:

public class DemoEvent extends ApplicationEvent {
    private static final long serialVersionUID = -2753705718295396328L;
    private String msg;

    public DemoEvent(Object source, String msg) {
        super(source);
        this.msg = msg;
    }

    public String getMsg() {
        return msg;
    }

    public void setMsg(String msg) {
        this.msg = msg;
    }
}

定義 Listener 類,實現 ApplicationListener接口,并且注入到 IOC 中。等發布者發布事件時,都會通知到這個bean,從而達到監聽的效果。

@Component
public class DemoListener implements ApplicationListener<DemoEvent> {
    @Override
    public void onApplicationEvent(DemoEvent demoEvent) {
        String msg = demoEvent.getMsg();
        System.out.println("bean-listener 收到了 publisher 發布的消息: " + msg);
    }
}

要發布上述自定義的 event,需要調用 ApplicationEventPublisher 的 publishEvent 方法,我們可以定義一個實現 ApplicationEventPublisherAware 的類,并注入 IOC來進行調用:

@Component
public class DemoPublisher implements ApplicationEventPublisherAware {

    private ApplicationEventPublisher applicationEventPublisher;

    @Override
    public void setApplicationEventPublisher(ApplicationEventPublisher applicationEventPublisher) {
        this.applicationEventPublisher = applicationEventPublisher;
    }

    public void sendMsg(String msg) {
        applicationEventPublisher.publishEvent(new DemoEvent(this, msg));
    }
}

客戶端調用 publisher:

@RestController
@RequestMapping("/event")
public class DemoClient implements ApplicationContextAware {
    private ApplicationContext applicationContext;

    @Override
    public void setApplicationContext(ApplicationContext applicationContext) throws BeansException {
        this.applicationContext = applicationContext;
    }

    @GetMapping("/publish")
    public void publish(){
        DemoPublisher bean = applicationContext.getBean(DemoPublisher.class);
        bean.sendMsg("發布者發送消息......");
    }
}

輸出結果:

 

bean-listener 收到了 publisher 發布的消息: 發布者發送消息......

 

2.基于注解

我們可以不用實現 AppplicationListener 接口 ,在方法上使用 @EventListener 注冊事件。如果你的方法應該偵聽多個事件,并不使用任何參數來定義,可以在 @EventListener 注解上指定多個事件。

重寫 DemoListener 類如下:

public class DemoListener {
    @EventListener(value = {DemoEvent.class, TestEvent.class})
    public void processApplicationEvent(DemoEvent event) {
        String msg = event.getMsg();
        System.out.println("bean-listener 收到了 publisher 發布的消息: " + msg);
    }
}

3.事件過濾

如果希望通過一定的條件對事件進行過濾,可以使用 @EventListener 的 condition 屬性。以下實例中只有 event 的 msg 屬性是 my-event 時才會進行調用。

@EventListener(value = {DemoEvent.class, TestEvent.class}, condition = "#event.msg == 'my-event'")
public void processApplicationEvent(DemoEvent event) {
     String msg = event.getMsg();
     System.out.println("bean-listener 收到了 publisher 發布的消息: " + msg);
 }

此時,發送符合條件的消息,listener 才會偵聽到 publisher 發布的消息。

 

bean-listener 收到了 publisher 發布的消息: my-event

 

4.異步事件監聽

前面提到的都是同步處理事件,那如果我們希望某個特定的偵聽器異步去處理事件,如何做?

使用 @Async 注解可以實現類內方法的異步調用,這樣方法在執行的時候,將會在獨立的線程中被執行,調用者無需等待它的完成,即可繼續其他的操作。

@EventListener
@Async
public void processApplicationEvent(DemoEvent event) {
    String msg = event.getMsg();
    System.out.println("bean-listener 收到了 publisher 發布的消息: " + msg);
}

使用異步監聽時,有兩點需要注意:

  • 如果異步事件拋出異常,則不會將其傳播到調用方。
  • 異步事件監聽方法無法通過返回值來發布后續事件,如果需要作為處理結果發布另一個事件,請插入 ApplicationEventPublisher 以手動發布事件

 

三、好處及應用場景

 

ApplicationContext 在運行期會自動檢測到所有實現了 ApplicationListener 的 bean,并將其作為事件接收對象。當我們與 spring 上下文交互觸發 publishEvent 方法時,每個實現了 ApplicationListener 的 bean 都會收到 ApplicationEvent 對象,每個 ApplicationListener 可以根據需要只接收自己感興趣的事件。

這樣做有什么好處呢?

在傳統的項目中,各個業務邏輯之間耦合性比較強,controller 和 service 間都是關聯關系,然而,使用 ApplicationEvent 監聽 publisher 這種方式,類間關系是什么樣的?我們不如畫張圖來看看。

DemoPublisher 和 DemoListener 兩個類間并沒有直接關聯,解除了傳統業務邏輯兩個類間的關聯關系,將耦合降到最小。這樣在后期更新、維護時難度大大降低了。

Spring Event 業務解耦神器,大大提高可擴展性,刷爆了!

ApplicationEvent 使用觀察者模式實現,那什么時候適合使用觀察者模式呢?觀察者模式也叫 發布-訂閱模式,例如,微博的訂閱,我們訂閱了某些微博賬號,當這些賬號發布消息時,我們都會收到通知。

總結來說,定義對象間的一種一對多的依賴關系,當一個對象的狀態發生改變時,所有依賴于它的對象都得到通知并被自動更新,從而實現廣播的效果。

 

四、源碼閱讀

 

Spring Event 業務解耦神器,大大提高可擴展性,刷爆了!

 

Spring中的事件機制流程:

  • ApplicationEventPublisher是Spring的事件發布接口,事件源通過該接口的pulishEvent方法發布事件
  • ApplicationEventMulticaster就是Spring事件機制中的事件廣播器,它默認提供一個SimpleApplicationEventMulticaster實現,如果用戶沒有自定義廣播器,則使用默認的。它通過父類AbstractApplicationEventMulticaster的getApplicationListeners方法從事件注冊表(事件-監聽器關系保存)中獲取事件監聽器,并且通過invokeListener方法執行監聽器的具體邏輯
  • ApplicationListener就是Spring的事件監聽器接口,所有的監聽器都實現該接口,本圖中列出了典型的幾個子類。其中RestartApplicationListnener在SpringBoot的啟動框架中就有使用
  • 在Spring中通常是ApplicationContext本身擔任監聽器注冊表的角色,在其子類AbstractApplicationContext中就聚合了事件廣播器ApplicationEventMulticaster和事件監聽器ApplicationListnener,并且提供注冊監聽器的addApplicationListnener方法

通過上圖就能較清晰的知道當一個事件源產生事件時,它通過事件發布器ApplicationEventPublisher發布事件,然后事件廣播器ApplicationEventMulticaster會去事件注冊表ApplicationContext中找到事件監聽器ApplicationListnener,并且逐個執行監聽器的onApplicationEvent方法,從而完成事件監聽器的邏輯。

來到ApplicationEventPublisher 的 publishEvent 方法內部:

protected void publishEvent(Object event, @Nullable ResolvableType eventType) {
 if (this.earlyApplicationEvents != null) {
 this.earlyApplicationEvents.add(applicationEvent);
 }
 else {
  // 
  getApplicationEventMulticaster().multicastEvent(applicationEvent, eventType);
 }
}

多播事件方法:

@Override
public void multicastEvent(final ApplicationEvent event, @Nullable ResolvableType eventType) {
 ResolvableType type = (eventType != null ? eventType : resolveDefaultEventType(event));
 Executor executor = getTaskExecutor();
 // 遍歷所有的監聽者
 for (ApplicationListener<?> listener : getApplicationListeners(event, type)) {
  if (executor != null) {
   // 異步調用監聽器
   executor.execute(() -> invokeListener(listener, event));
  }
  else {
   // 同步調用監聽器
   invokeListener(listener, event);
  }
 }
}

invokeListener:

protected void invokeListener(ApplicationListener<?> listener, ApplicationEvent event) {
 ErrorHandler errorHandler = getErrorHandler();
 if (errorHandler != null) {
  try {
   doInvokeListener(listener, event);
  }
  catch (Throwable err) {
   errorHandler.handleError(err);
  }
 }
 else {
  doInvokeListener(listener, event);
 }
}

doInvokeListener:

private void doInvokeListener(ApplicationListener listener, ApplicationEvent event) {
 try {
  // 這里是事件發生的地方
  listener.onApplicationEvent(event);
 }
 catch (ClassCastException ex) {
  ......
 }
}

點擊 ApplicationListener 接口 onApplicationEvent 方法的實現,可以看到我們重寫的方法。

Spring Event 業務解耦神器,大大提高可擴展性,刷爆了!

 

五、總結

 

Spring 使用反射機制,獲取了所有繼承 ApplicationListener 接口的監聽器,在 Spring 初始化時,會把監聽器都自動注冊到注冊表中。

Spring 的事件發布非常簡單,我們來總結一下:

  • 定義一個繼承 ApplicationEvent 的事件
  • 定義一個實現 ApplicationListener 的監聽器或者使用 @EventListener 監聽事件
  • 定義一個發送者,調用 ApplicationContext 直接發布或者使用 ApplicationEventPublisher 來發布自定義事件

最后,發布-訂閱模式可以很好的將業務邏輯進行解耦(上圖驗證過),大大提高了可維護性、可擴展性。

分享到:
標簽:Spring Event
用戶無頭像

網友整理

注冊時間:

網站:5 個   小程序:0 個  文章:12 篇

  • 51998

    網站

  • 12

    小程序

  • 1030137

    文章

  • 747

    會員

趕快注冊賬號,推廣您的網站吧!
最新入駐小程序

數獨大挑戰2018-06-03

數獨一種數學游戲,玩家需要根據9

答題星2018-06-03

您可以通過答題星輕松地創建試卷

全階人生考試2018-06-03

各種考試題,題庫,初中,高中,大學四六

運動步數有氧達人2018-06-03

記錄運動步數,積累氧氣值。還可偷

每日養生app2018-06-03

每日養生,天天健康

體育訓練成績評定2018-06-03

通用課目體育訓練成績評定