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

溫馨提示×

溫馨提示×

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

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

spring中怎么監聽ApplicationEvent事件現

發布時間:2021-06-21 16:48:12 來源:億速云 閱讀:176 作者:Leah 欄目:大數據

這篇文章將為大家詳細講解有關spring中怎么監聽ApplicationEvent事件現,文章內容質量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關知識有一定的了解。

原理:ApplicationContextAware接口提供了publishEvent方法,實現了Observe(觀察者)設計模式的傳播機制,實現了對bean的傳播。通過ApplicationContextAware我們可以把系統中所有ApplicationEvent傳播給系統中所有的ApplicationListener。

1、直接上代碼
2、定義自己的監聽器(負責處理自己的監聽事件)
3、定義一個bean觸發監聽事件
4、測試
package com.test.eventListener;

import org.springframework.context.ApplicationEvent;

/**
 * [@author](https://my.oschina.net/arthor) admin
 * [@date](https://my.oschina.net/u/2504391) 2018/5/17 17:37
 * 新建StudentAddEvent類,實現抽象類org.springframework.context.ApplicationEvent
 * StudentAddEvent類中需要實現自己的構造函數
 *  增加學生監聽事件
 */
public class StudentAddEvent extends ApplicationEvent {

    private static final long serialVersionUID = 20L;

    /**
     * 學生姓名
     */
    private String name;

    /**
     * [@param](https://my.oschina.net/u/2303379) source
     */
    public StudentAddEvent(Object source, String name) {
        super(source);
        this.name = name;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }
}
package com.test.eventListener;

import org.springframework.context.ApplicationEvent;
import org.springframework.context.ApplicationListener;
import org.springframework.stereotype.Component;

/**
 * [@author](https://my.oschina.net/arthor) admin
 * 新建StudentAddListener類,實現接口org.springframework.context.ApplicationListener中的onApplicationEvent方法,
 * 在該方法中只處理StudentAddEvent類型的ApplicationEvent事件
 * 定義StudentAddListener監聽器
 */
[@Component](https://my.oschina.net/u/3907912)
public class StudentAddListener implements ApplicationListener {

    public void onApplicationEvent(ApplicationEvent event) {
        // 1.判斷是否是增加學生對象的事件
        if (!(event instanceof StudentAddEvent)) {
            return;
        }

        // 2.是增加學生事件的對象,進行邏輯處理,比如記日志、積分等
        StudentAddEvent studentAddEvent = (StudentAddEvent) event;
        System.out.println("增加了學生:" + studentAddEvent.getName());
    }
}
package com.test.eventListener;

import org.springframework.beans.BeansException;
import org.springframework.context.ApplicationContext;
import org.springframework.context.ApplicationContextAware;
import org.springframework.stereotype.Component;

/**
 * @author admin
 * 定義StudentAddBean觸發StudentAddEvent事件
 * 新建StudentAddBean類,實現接口 org.springframework.context.ApplicationContextAware中的setApplicationContext方法,
 * 在構造bean的時候注入Spring的上下文對象,以便通過Spring上下文對象的publishEvent方法來觸發StudentAddEvent事件
 */
@Component
public class StudentAddBean implements ApplicationContextAware {
    /**
     * 定義Spring上下文對象
     */
    private ApplicationContext applicationContext = null;

    /*
     * (non-Javadoc)
     *
     * @see
     * org.springframework.context.ApplicationContextAware#setApplicationContext
     * (org.springframework.context.ApplicationContext)
     */
    public void setApplicationContext(ApplicationContext applicationContext)
            throws BeansException {
        this.applicationContext = applicationContext;

    }

    /**
     * 增加一個學生
     *
     * @param studentName
     */
    public void addStudent(String studentName) {
        // 1.構造一個增加學生的事件
        StudentAddEvent aStudentEvent = new StudentAddEvent(
                applicationContext, studentName);
        // 2.觸發增加學生事件
        applicationContext.publishEvent(aStudentEvent);
    }

}
package com.test.eventListener;

import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

/**
 * @author admin
 * ApplicationContext在運行期會自動檢測到所有實現了ApplicationListener的bean對象,并將其作為事件接收對象。
 * 當ApplicationContext的publishEvent方法被觸發時,每個實現了ApplicationListener接口的bean都會收到ApplicationEvent對象,
 * 每個ApplicationListener可根據事件類型只接收處理自己感興趣的事件,比如上面的StudentAddListener只接收StudentAddEvent事件。
 */
public class EventListenerTest {
    public static void main(String[] args) {
        String[] xmlConfig = new String[] { "spring/spring.xml" };
        // 使用ApplicationContext來初始化系統
        ApplicationContext context = new ClassPathXmlApplicationContext(xmlConfig);
        StudentAddBean studentBean = (StudentAddBean) context.getBean("studentAddBean");
        studentBean.addStudent("張三");
        studentBean.addStudent("李四");
    }
}

關于spring中怎么監聽ApplicationEvent事件現就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

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

AI

咸宁市| 寻乌县| 新兴县| 隆昌县| 施秉县| 衡阳县| 永城市| 德兴市| 屏边| 沂南县| 曲阜市| 张家港市| 石泉县| 繁昌县| 吴旗县| 扎鲁特旗| 阿瓦提县| 蒙城县| 三门县| 旺苍县| 民县| 新宁县| 大渡口区| 油尖旺区| 全南县| 石狮市| 苏州市| 宁都县| 周口市| 江都市| 凤阳县| 无极县| 高邑县| 错那县| 蒙阴县| 诏安县| 乃东县| 盘锦市| 刚察县| 福州市| 汨罗市|