您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關利用Spring怎么實現一個監聽器功能,文章內容質量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關知識有一定的了解。
<!-- 自定義監聽 啟動加載系統參數 --> <listener> <listener-class>com.cn.framework.constant.OmsConfigLoader</listener-class> </listener>
2、創建類OmsConfigLoader 實現接口 ServletContextListener,項目啟動的時候service還沒有注入,此時調用service的方法會報錯,因為在web容器中無論是servlet還是Filter都不是Spring容器來管理的。
listener的生命周期是web容器維護的,bean的生命周期是由Spring容器來維護的,所以在listener中使用@Resource,listener不認識,
使用WebApplicationContextUtils工具類,該工具類的作用是獲取到spring容器的引用,進而獲取到我們需要的bean實例。
package com.cn.framework.constant; import javax.servlet.ServletContextEvent; import javax.servlet.ServletContextListener; import org.apache.log4j.Logger; import org.springframework.web.context.support.WebApplicationContextUtils; import com.kxs.service.systemService.ISystemService; public class OmsConfigLoader implements ServletContextListener { private static Logger LOG = Logger.getLogger(OmsConfigLoader.class); @Override public void contextDestroyed(ServletContextEvent arg0) { // TODO Auto-generated method stub } @Override public void contextInitialized(ServletContextEvent arg0) { LOG.info("==> 加載OMS系統配置信息 Start =="); try { ISystemService iSystemService = WebApplicationContextUtils.getWebApplicationContext(arg0.getServletContext()) .getBean(ISystemService.class); iSystemService.refreshCache(); } catch (Exception e) { e.printStackTrace(); LOG.info(e.toString()); } LOG.info("==> 加載OMS系統配置信息 End =="); } }
補充:Spring-xml配置自定義事件監聽器
Spring中使用自定義事件類型:
第一步:自定義事件類型:自定義類需要繼承Spring中org.springframework.context.ApplicationEvent類
第二步:設置事件監聽器,實現org.springframework.context.ApplicationListener<自定義事件類型>接口,重寫onApplicationEvent方法監聽事件源
第三步:將事件監聽器配置到Spring中,通過xml配置文件將事件監聽器配置到bean容器中
第四步:Spring容器(container容器發布事件)發布事件
自定義事件類型
public class RainEvent extends ApplicationEvent { private static final long serialVersionUID = 1L; public RainEvent(Object source) { super(source); } }
監聽器:可以創建多個監聽器
public class RainEventListener1 implements ApplicationListener<RainEvent> { //監聽rainevent事件,調用當前方法 @Override public void onApplicationEvent(RainEvent event) { Object source = event.getSource(); System.out.println("監聽器1:"+source); } } public class RainEventListener2 implements ApplicationListener<RainEvent> { //監聽rainevent事件,調用當前方法 @Override public void onApplicationEvent(RainEvent event) { Object source = event.getSource(); System.out.println("監聽器2:"+source); } }
xml配置文件將監聽器配置到bean容器中
<!-- 配置監聽器,向spring容器發布事件,自動觸發監聽器的onApplicationEvent方法 --> <bean class="com.briup.ioc.event.RainEventListener1"></bean> <bean class="com.briup.ioc.event.RainEventListener2"></bean>
bean容器發布事件
public void ioc_event() { try { String path = "com/briup/ioc/event/event.xml"; ApplicationContext container = new ClassPathXmlApplicationContext(path); container.publishEvent(new RainEvent("打雷了,下雨了!")); } catch (Exception e) { e.printStackTrace(); } }
關于利用Spring怎么實現一個監聽器功能就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。