您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關spring中怎么監聽ApplicationEvent事件現,文章內容質量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關知識有一定的了解。
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事件現就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。