一排吴、?BeanFactoryPostProcessor?(上下文占位符相關(guān))
這是一個(gè)函數(shù)接口(functional interface)众眨,所以它能被用作lambda表達(dá)式(lambda expression)的表達(dá)目標(biāo)或者是方法的實(shí)現(xiàn)目標(biāo)(method reference)。
它可以讓應(yīng)用程序上下文bean定義的參數(shù)阻逮,實(shí)現(xiàn)自定義修改粱快。通過調(diào)整bean工廠底層上下文中bean的配置項(xiàng)屬性。
應(yīng)用程序能在所有的bean定義中自動(dòng)識(shí)別?BeanFactoryPostProcessor的bean叔扼,并且在創(chuàng)建其它bean之前先執(zhí)行它們事哭。
當(dāng)系統(tǒng)管理員想要自定義應(yīng)用程序上下文bean的某些參數(shù)時(shí),非常合適使用自定義配置文件瓜富,然后通過此接口進(jìn)行加載鳍咱。
解決此類配置需求的“開箱即用(out-of-the-box)”解決方案,請(qǐng)參見PropertyResourceConfigurer以及其具體實(shí)現(xiàn)類与柑。
BeanFactoryPostProcessor 可以與Bean的定義進(jìn)行交互和修改谤辜,但是無法與Bean實(shí)例互動(dòng)。如果非要這么做价捧,可能會(huì)導(dǎo)致bean過早地實(shí)例化丑念、破壞容器或者得到意想不到的副作用。如果需要與bean實(shí)例進(jìn)行交互结蟋,請(qǐng)以實(shí)現(xiàn)BeanPostProcessor作為頂替方案脯倚。
1.1、PropertyResourceConfigurer
可以從屬性配置資源中配置獨(dú)立bean的配置項(xiàng)嵌屎,比如一個(gè)properties文件推正。適用于系統(tǒng)管理員自定義配置文件恍涂,用于重寫應(yīng)用程序上下文中bean的配置項(xiàng)。
發(fā)行版中植榕,提供如下兩個(gè)具體的實(shí)現(xiàn)類
●?PropertyOverrideConfigurer?類似于“beanName.property=value"這種形式(將配置文件中的值再沧,寫入指定bean的定義中)
●?PropertyPlaceholderConfigurer?針對(duì)于"${...}"這樣的占位符(placeholders)(將配置文件中的值,寫入所有bean定義的同名占位符中)
通過重寫方法:convertPropertyValue(java.lang.String)?可以將讀入的屬性值進(jìn)行轉(zhuǎn)化内贮。比如产园,在執(zhí)行替換之前,將加密的值進(jìn)行解密或者做適當(dāng)?shù)募用芴幚怼?/p>
1.1.1 PropertyPlaceholderConfigurer?extends?PlaceholderConfigurerSupport
PropertyPlaceholderConfigurer 此類用于匹配針對(duì)本地配置文件(local?properties)夜郁、系統(tǒng)配置(system properties)和環(huán)境變量(environment variables)的 ${...} 占位符什燕。
從Spring 3.1開始,應(yīng)該使用?PropertySourcesPlaceholderConfigurer?代替上述實(shí)現(xiàn)類竞端。因?yàn)樗ㄟ^使用更高級(jí)的Environment?和同樣是3.1開始支持的?PropertySource?組件屎即,變得更為靈活。
在下述情況下事富,依然適用于使用?PropertyPlaceholderConfigurer
●?thespring-contextmodule is not available (i.e., one is using Spring'sBeanFactoryAPI as opposed toApplicationContext).
● existing configuration makes use of the?"systemPropertiesMode"?and/or?"systemPropertiesModeName"?properties. Users are encouraged to move away from using these settings, and rather configure property source search order through the container's Environment; however, exact preservation of functionality may be maintained by continuing to use PropertyPlaceholderConfigurer.
在Spring 3.1之前技俐,命名空間?<context:property-placeholder/> 注冊為PropertyPlaceholderConfigurer 的一個(gè)實(shí)例。如果使用spring-context-3.0.xsd 作為命名空間的解釋器统台,那么依然保持現(xiàn)狀雕擂。也就是說,就算使用Spring 3.1贱勃,你只要不更新你的?xsi:schemaLocation 并且繼續(xù)使用這個(gè)3.0的XSD井赌,那么就能保持PropertyPlaceholderConfigurer 作為如上命名空間的注冊實(shí)例。
1.1.1.1 PropertySourcesPlaceholderConfigurer?extends?PlaceholderConfigurerSupport?implements?EnvironmentAware
該子類是PlaceholderConfigurerSupport?下專門針對(duì)當(dāng)前 Spring?Environment?和 其下面的?PropertySources?中的變量資源進(jìn)行 ${...}占位符處理贵扰,包括:bean定義中的參數(shù)值仇穗,@Value標(biāo)簽等。
它在Spring3.1中設(shè)計(jì)戚绕,并用于頂替PropertyPlaceholderConfigurer的類纹坐。在spring-context-3.1 XSD中,默認(rèn)作為property-placeholder的支持者舞丛,也就是在3.0之前默認(rèn)為PropertyPlaceholderConfigurer 后臺(tái)執(zhí)行者的元素耘子。請(qǐng)查看spring-context 的XSD文檔了解詳情。
1.1.1.2 注解類型?PropertySource
二瓷马、BeanPostProcessor (跟面向切面編程有關(guān))
工廠鉤子(Factory hook)可以對(duì)新的bean實(shí)例進(jìn)行自定義修改拴还。比如:為檢查標(biāo)記接口(marker interfaces)或者是代理包裝它們。
ApplicationContexts能夠在所有的bean定義中自動(dòng)識(shí)別BeanPostProcessor類的bean欧聘,并且在所有其他bean創(chuàng)建完成之后執(zhí)行它們。
普通Bean工廠(plain bean factories)允許注冊(programmatic registration) post-processors端盆,適用于所有通過此類工廠創(chuàng)建的bean怀骤。
想要通過標(biāo)記接口( marker interfaces )和類似的方式將post-processors加入到bean中费封,通常需要實(shí)現(xiàn)接口postProcessBeforeInitialization(java.lang.Object, java.lang.String)? 。與此同時(shí)蒋伦,如果是要通過代理包裝bean弓摘,一般就實(shí)現(xiàn)接口postProcessAfterInitialization(java.lang.Object, java.lang.String)?。
Typically, post-processors that populate beans via marker interfaces or the like will implement?postProcessBeforeInitialization(java.lang.Object, java.lang.String),while post-processors that wrap beans with proxies will normally implement?postProcessAfterInitialization(java.lang.Object, java.lang.String).
2.1?
PreferencesPlaceholderConfigurer
子類PropertyPlaceholderConfigurer 是從JDK 1.4 開始支持的API(java.util.prefs)
支持系統(tǒng)路徑和用戶的參數(shù)樹痕届。同樣支持傳統(tǒng)的在placeholders中指定的路徑("myPath/myPlaceholderKey")韧献。如果沒有指定則使用它的root節(jié)點(diǎn)。