您好,登錄后才能下訂單哦!
本篇內容主要講解“SpringBoot監聽器模式實例分析”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“SpringBoot監聽器模式實例分析”吧!
ApplicationEvent是一個抽象類,idea上展開其繼承關系如圖:
可見SpringBoot所定義的事件類型是極為豐富的。
ApplicationListener是一個接口,我們也可以通過實現這個接口來定義自己的監聽器,可以通過與事件初始化器方式相似的方式進行加載。
@FunctionalInterface public interface ApplicationListener<E extends ApplicationEvent> extends EventListener { /** * Handle an application event. * @param event the event to respond to */ void onApplicationEvent(E event); }
我們可以看到代碼中它接受一個上文中提到的事件泛型,這代表了此監聽器關注的事件;
還有一種實現監聽器的方式,即實現SmartApplicationListener接口,SmartApplicationListener繼承了ApplicationListener接口,通過這種方式實現監聽器,可以同時注冊多個感興趣的事件,只需實現接口的supportsEventType方法即可;
public interface SmartApplicationListener extends ApplicationListener<ApplicationEvent>, Ordered { /** * Determine whether this listener actually supports the given event type. * @param eventType the event type (never {@code null}) */ boolean supportsEventType(Class<? extends ApplicationEvent> eventType); /** * Determine whether this listener actually supports the given source type. * <p>The default implementation always returns {@code true}. * @param sourceType the source type, or {@code null} if no source */ default boolean supportsSourceType(@Nullable Class<?> sourceType) { return true; } /** * Determine this listener's order in a set of listeners for the same event. * <p>The default implementation returns {@link #LOWEST_PRECEDENCE}. */ @Override default int getOrder() { return LOWEST_PRECEDENCE; } }
ApplicationEventMulticaster是一個接口,定義了添加監聽器、刪除監聽器、傳播事件等方法;
SpringBoot為我們實現了SimpleApplicationEventMulticaster這一事件廣播器,繼承關系如圖所示:
到此,相信大家對“SpringBoot監聽器模式實例分析”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。