亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

SpringBoot監聽器模式實例分析

發布時間:2022-07-15 13:52:09 來源:億速云 閱讀:194 作者:iii 欄目:開發技術

本篇內容主要講解“SpringBoot監聽器模式實例分析”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“SpringBoot監聽器模式實例分析”吧!

1、事件ApplicationEvent

ApplicationEvent是一個抽象類,idea上展開其繼承關系如圖:

SpringBoot監聽器模式實例分析

可見SpringBoot所定義的事件類型是極為豐富的。

2、監聽器ApplicationListener

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;
	}
}

3、事件廣播器ApplicationEventMulticaster

ApplicationEventMulticaster是一個接口,定義了添加監聽器、刪除監聽器、傳播事件等方法;

SpringBoot為我們實現了SimpleApplicationEventMulticaster這一事件廣播器,繼承關系如圖所示:

SpringBoot監聽器模式實例分析

到此,相信大家對“SpringBoot監聽器模式實例分析”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

周宁县| 贺兰县| 兴文县| 高邮市| 治县。| 双柏县| 嘉禾县| 泗水县| 黔西县| 天全县| 垦利县| 锡林郭勒盟| 沿河| 西华县| 东港市| 天祝| 南昌县| 凤翔县| 瓦房店市| 蓝田县| 凤城市| 绵阳市| 神木县| 吴桥县| 灯塔市| 乐清市| 长泰县| 南召县| 平顶山市| 新郑市| 拜泉县| 逊克县| 旅游| 芜湖县| 同江市| 农安县| 通城县| 怀仁县| 陆良县| 涟源市| 许昌市|