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

溫馨提示×

溫馨提示×

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

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

利用Spring怎么實現一個監聽器功能

發布時間:2021-01-21 15:11:52 來源:億速云 閱讀:162 作者:Leah 欄目:開發技術

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

1、在web.xml中聲明

<!-- 自定義監聽 啟動加載系統參數 -->
 <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怎么實現一個監聽器功能就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

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

AI

威远县| 大竹县| 米泉市| 东兴市| 平罗县| 玉田县| 秦皇岛市| 南通市| 永嘉县| 凉城县| 锡林浩特市| 社会| 仪征市| 新丰县| 镇雄县| 乌海市| 嘉定区| 交口县| 乐亭县| 南宫市| 博客| 边坝县| 宜君县| 徐闻县| 武穴市| 萝北县| 疏勒县| 新丰县| 富裕县| 仪陇县| 达拉特旗| 皮山县| 平和县| 大厂| 连云港市| 麻栗坡县| 涟源市| 渭南市| 朝阳市| 恩平市| 灵石县|