日韩无码专区无码一级三级片|91人人爱网站中日韩无码电影|厨房大战丰满熟妇|AV高清无码在线免费观看|另类AV日韩少妇熟女|中文日本大黄一级黄色片|色情在线视频免费|亚洲成人特黄a片|黄片wwwav色图欧美|欧亚乱色一区二区三区

RELATEED CONSULTING
相關咨詢
選擇下列產(chǎn)品馬上在線溝通
服務時間:8:30-17:00
你可能遇到了下面的問題
關閉右側工具欄

新聞中心

這里有您想知道的互聯(lián)網(wǎng)營銷解決方案
創(chuàng)新互聯(lián)Spring教程:Spring中的自定義事件

Spring 中的自定義事件

編寫和發(fā)布自己的自定義事件有許多步驟。按照在這一章給出的說明來編寫,發(fā)布和處理自定義 Spring 事件。

創(chuàng)新互聯(lián)專業(yè)為企業(yè)提供云南網(wǎng)站建設、云南做網(wǎng)站、云南網(wǎng)站設計、云南網(wǎng)站制作等企業(yè)網(wǎng)站建設、網(wǎng)頁設計與制作、云南企業(yè)網(wǎng)站模板建站服務,10年云南做網(wǎng)站經(jīng)驗,不只是建網(wǎng)站,更提供有價值的思路和整體網(wǎng)絡服務。

步驟 描述
1 創(chuàng)建一個名稱為 SpringExample 的項目,并且在創(chuàng)建項目的 src 文件夾中創(chuàng)建一個包 com.tutorialspoint。
2 使用 Add External JARs 選項,添加所需的 Spring 庫,解釋見 Spring Hello World Example 章節(jié)。
3 通過擴展 ApplicationEvent,創(chuàng)建一個事件類 CustomEvent。這個類必須定義一個默認的構造函數(shù),它應該從 ApplicationEvent 類中繼承的構造函數(shù)。
4 一旦定義事件類,你可以從任何類中發(fā)布它,假定 EventClassPublisher 實現(xiàn)了 ApplicationEventPublisherAware。你還需要在 XML 配置文件中聲明這個類作為一個 bean,之所以容器可以識別 bean 作為事件發(fā)布者,是因為它實現(xiàn)了 ApplicationEventPublisherAware 接口。
5 發(fā)布的事件可以在一個類中被處理,假定 EventClassHandler 實現(xiàn)了 ApplicationListener 接口,而且實現(xiàn)了自定義事件的 onApplicationEvent 方法。
6 src 文件夾中創(chuàng)建 bean 的配置文件 Beans.xml 和 MainApp 類,它可以作為一個 Spring 應用程序來運行。
7 最后一步是創(chuàng)建的所有 Java 文件和 Bean 配置文件的內(nèi)容,并運行應用程序,解釋如下所示。

這個是 CustomEvent.java 文件的內(nèi)容:

package com.tutorialspoint;
import org.springframework.context.ApplicationEvent;
public class CustomEvent extends ApplicationEvent{ 
   public CustomEvent(Object source) {
      super(source);
   }
   public String toString(){
      return "My Custom Event";
   }
}

下面是 CustomEventPublisher.java 文件的內(nèi)容:

package com.tutorialspoint;
import org.springframework.context.ApplicationEventPublisher;
import org.springframework.context.ApplicationEventPublisherAware;
public class CustomEventPublisher 
   implements ApplicationEventPublisherAware {
   private ApplicationEventPublisher publisher;
   public void setApplicationEventPublisher
              (ApplicationEventPublisher publisher){
      this.publisher = publisher;
   }
   public void publish() {
      CustomEvent ce = new CustomEvent(this);
      publisher.publishEvent(ce);
   }
}

下面是 CustomEventHandler.java 文件的內(nèi)容:

package com.tutorialspoint;
import org.springframework.context.ApplicationListener;
public class CustomEventHandler 
   implements ApplicationListener{
   public void onApplicationEvent(CustomEvent event) {
      System.out.println(event.toString());
   }
}

下面是 MainApp.java 文件的內(nèi)容:

package com.tutorialspoint;
import org.springframework.context.ConfigurableApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
public class MainApp {
   public static void main(String[] args) {
      ConfigurableApplicationContext context = 
      new ClassPathXmlApplicationContext("Beans.xml");    
      CustomEventPublisher cvp = 
      (CustomEventPublisher) context.getBean("customEventPublisher");
      cvp.publish();  
      cvp.publish();
   }
}

下面是配置文件 Beans.xml





   

   

一旦你完成了創(chuàng)建源和 bean 的配置文件后,我們就可以運行該應用程序。如果你的應用程序一切都正常,將輸出以下信息:

My Custom Event
My Custom Event

分享名稱:創(chuàng)新互聯(lián)Spring教程:Spring中的自定義事件
文章鏈接:http://www.5511xx.com/article/djjjihd.html