日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

ApplicationContextAware

發布時間:2024/4/17 编程问答 41 豆豆
生活随笔 收集整理的這篇文章主要介紹了 ApplicationContextAware 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

1、實現了ApplicationContextAware接口,在Bean的實例化時會自動調用setApplicationContext()方法!

2、通過調用靜態方法getBean即可獲取

?

spring中提供一些Aware相關接口,像是BeanFactoryAware、 ApplicationContextAware、ResourceLoaderAware、ServletContextAware等等,實作這些 Aware接口的Bean在被初始之后,可以取得一些相對應的資源,例如實作BeanFactoryAware的Bean在初始后,Spring容器將會注入BeanFactory的實例,而實作ApplicationContextAware的Bean,在Bean被初始后,將會被注入 ApplicationContext的實例等等。
 Bean取得BeanFactory、ApplicationContextAware的實例目的是什么,一般的目的就是要取得一些檔案資源的存取、相 關訊息資源或是那些被注入的實例所提供的機制,例如ApplicationContextAware提供了publishEvent()方法,可以支持基于Observer模式的事件傳播機制。
 ApplicationContextAware接口的定義如下:

ApplicationContextAware.java

public?interface ApplicationContextAware {

????void setApplicationContext(ApplicationContext context);

}


 我們這邊示范如何透過實作ApplicationContextAware注入ApplicationContext來實現事件傳播,首先我們的HelloBean如下:

HelloBean.java

package onlyfun.caterpillar;

?

import org.springframework.context.*;

 

public class HelloBean implements ApplicationContextAware {

????private ApplicationContext applicationContext;

????private?String helloWord = "Hello!World!";

??

????public void setApplicationContext(ApplicationContext context) {

????????this.applicationContext = context;

????}

??

????public void setHelloWord(String helloWord) {

????????this.helloWord = helloWord;

????}

??

????public?String getHelloWord() {

????????applicationContext.publishEvent(

???????????????new PropertyGettedEvent("[" + helloWord + "] is getted"));

????????return helloWord;

????}

}


 ApplicationContext會由Spring容器注入,publishEvent()方法需要一個繼承ApplicationEvent的對象,我們的PropertyGettedEvent繼承了ApplicationEvent,如下:

PropertyGettedEvent.java

package onlyfun.caterpillar;

?

import org.springframework.context.*;

?

public class PropertyGettedEvent extends ApplicationEvent {

????public PropertyGettedEvent(Object source) {

????????super(source);

????}

}


 當ApplicationContext執行publishEvent()后,會自動尋找實作ApplicationListener接口的對象并通知其發生對應事件,我們實作了PropertyGettedListener如下:

PrppertyGettedListener.java

package onlyfun.caterpillar;

?

import org.springframework.context.*;

?

public class PropertyGettedListener implements ApplicationListener {

????public void onApplicationEvent(ApplicationEvent event) {

????????System.out.println(event.getSource().toString());??

????}

}


 Listener必須被實例化,這我們可以在Bean定義檔中加以定義:

<?xml version="1.0" encoding="UTF-8"?>

<!DOCTYPE beans PUBLIC "-//SPRING/DTD BEAN/EN"?"http://www.springframework.org/dtd/spring-beans.dtd">

<beans>

????<bean id="propertyGetterListener" class="onlyfun.caterpillar.PropertyGettedListener"/>

?

????<bean id="helloBean" class="onlyfun.caterpillar.HelloBean">

????????<property name="helloWord"><value>Hello!Justin!</value></property>

????</bean>

</beans>


 我們寫一個測試程序來測測事件傳播的運行:

Test.java

package onlyfun.caterpillar;

?

import org.springframework.context.*;

import org.springframework.context.support.*;

?

public class Test {

????public?static void main(String[] args) {

????????ApplicationContext context = new ClassPathXmlApplicationContext("bean.xml");

??????

????????HelloBean hello = (HelloBean) context.getBean("helloBean");

????????System.out.println(hello.getHelloWord());

????}

}


 執行結果會如下所示:

log4j:WARN No appenders could be found for logger

(org.springframework.beans.factory.xml.XmlBeanDefinitionReader).

log4j:WARN Please initialize the log4j system properly.

org.springframework.context.support.ClassPathXmlApplicationContext:

displayName=[org.springframework.context.support.ClassPathXmlApplicationContext;

hashCode=33219526]; startup date=[Fri Oct 29?10:56:35 CST?2004];

root of ApplicationContext hierarchy

[Hello!Justin!] is getted

Hello!Justin!


 以上是以實作事件傳播來看看實作Aware接口取得對應對象后,可以進行的動作,同樣的,您也可以實作ResourceLoaderAware接口:

ResourceLoaderAware.java

public?interface ResourceLoaderAware {

????void setResourceLoader(ResourceLoader loader);

}


 實作ResourceLoader的Bean就可以取得ResourceLoader的實例,如此就可以使用它的getResource()方法,這對于必須存取檔案資源的Bean相當有用。
 基本上,Spring雖然提供了這些Aware相關接口,然而Bean上若實現了這些界面,就算是與Spring發生了依賴,從另一個角度來看,雖然您可以直接在Bean上實現這些接口,但您也可以透過setter來完成依賴注入,例如:

HelloBean.java

package onlyfun.caterpillar;

?

import org.springframework.context.*;

?

public class HelloBean {

????private ApplicationContext applicationContext;

????private?String helloWord = "Hello!World!";

??

????public void setApplicationContext(ApplicationContext context) {

????????this.applicationContext = context;

????}

??

????public void setHelloWord(String helloWord) {

????????this.helloWord = helloWord;

????}

??

????public?String getHelloWord() {

????????applicationContext.publishEvent(new PropertyGettedEvent("[" + helloWord + "] is getted"));

????????return helloWord;

????}

}


 注意這次我們并沒有實作ApplicationContextAware,我們在程序中可以自行注入ApplicationContext實例:

ApplicationContext context = new ClassPathXmlApplicationContext("bean.xml");

??????

HelloBean hello = (HelloBean) context.getBean("helloBean");

hello.setApplicationContext(context);

System.out.println(hello.getHelloWord());


 就Bean而言,降低了對Spring的依賴,可以比較容易從現有的框架中脫離

轉載于:https://www.cnblogs.com/Dhouse/p/3513705.html

總結

以上是生活随笔為你收集整理的ApplicationContextAware的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。