91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

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

平罗县| 清水河县| 昌乐县| 瓦房店市| 定南县| 北海市| 长丰县| 惠州市| 唐山市| 东光县| 武宁县| 浦县| 庆安县| 延长县| 临朐县| 忻州市| 鄂州市| 沙雅县| 泰州市| 莱阳市| 同德县| 游戏| 松溪县| 临颍县| 丹寨县| 宜川县| 麦盖提县| 阿瓦提县| 肃宁县| 房山区| 香港| 井陉县| 黑龙江省| 南城县| 淮北市| 肇源县| 尼勒克县| 萨迦县| 雷州市| 阿图什市| 高唐县|