PropertyPlaceholderConfigurer实现配置文件读取
生活随笔
收集整理的這篇文章主要介紹了
PropertyPlaceholderConfigurer实现配置文件读取
小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
PropertyPlaceholderConfigurer實(shí)現(xiàn)配置文件讀取
PropertyPlaceholderConfigurer類的主要的用法是將BeanFactory里定義的內(nèi)容放在一個(gè).properties的文件中. PropertyPlaceholderConfigurer是個(gè)bean工廠后置處理器的實(shí)現(xiàn),也就是BeanFactoryPostProcessor接口的一個(gè)實(shí)現(xiàn). PropertyPlaceholderConfigurer可以將上下文(配置文件)中的屬性值放在另一個(gè)單獨(dú)的標(biāo)準(zhǔn)java Properties文件中去. 這樣的話,我只需要對(duì)properties文件進(jìn)行修改,而不用對(duì)xml配置文件進(jìn)行修改.
import org.springframework.beans.BeansException; import org.springframework.beans.factory.config.ConfigurableListableBeanFactory; import org.springframework.beans.factory.config.PropertyPlaceholderConfigurer; import java.util.ArrayList; import java.util.List; import java.util.Map; import java.util.Properties;/*** 配置讀取工具* Created by zhengzhihust on 15/9/23.*/ public class ExampleConfigure extends PropertyPlaceholderConfigurer {@Overrideprotected void processProperties(ConfigurableListableBeanFactory beanFactory, Properties props) throws BeansException {super.processProperties(beanFactory, props);List<String> topics = new ArrayList<>();for (Map.Entry<Object, Object> entry : props.entrySet()) {//讀取配置文件中的信息}} }當(dāng)然,spring.xml配置文件還需要引用一下資源文件:
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xmlns:context="http://www.springframework.org/schema/context"xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd http://www.mogujie.com/schema/tesla http://www.mogujie.com/schema/tesla/tesla.xsd"><bean id="id" class="全限定類名"><property name="locations"><list><value>classpath:conf/example.properties</value></list></property></bean></beans>原文參考:http://zhengzhihust.github.io/jekyll/update/2016/03/27/java-place-holder
轉(zhuǎn)載于:https://www.cnblogs.com/ericzheng/p/5404475.html
總結(jié)
以上是生活随笔為你收集整理的PropertyPlaceholderConfigurer实现配置文件读取的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。
- 上一篇: hibernate多对一单向外键
- 下一篇: stm32f4xx 的EXTI使用的一般