目錄html
PropertyPlaceholderConfigurer
位於org.springframework.beans.factory.config 包下,它的繼承體系以下java
PropertyPlaceholderConfigurer 直接繼承於PlaceholderConfigurerSupport
,它的已知實現類只有一個mysql
PreferencesPlaceholderConfigurer
spring
源自JavaDoc: PropertyPlaceholderConfigurer 是 PlaceholderConfigurerSupport 的一個子類,用來解析${…}
佔位符的,可使用setLocation
和setProperties
設置系統屬性和環境變量。從Spring3.1 開始,PropertySourcesPlaceholderConfigurer應優先與此實現,經過使用Spring3.1 中的 Environment和 PropertySource機制, 使它的靈活性更強。sql
可是PropertyPlaceholderConfigurer卻適用以下狀況:當 spring-context
模塊不可用的時候,使用BeanFactory的API 而不是ApplicationContext的API。現有配置使用setSystemPropertiesMode 和 setSystemPropertiesModeName屬性,建議用戶不要使用這些設置, 而是使用容器的Environment屬性;數據庫
在Spring3.1 以前,<context:property-placeholder/>
命名空間保存了PropertyPlaceholderConfigurer的實例,若是使用spring-context-3.0 xsd的定義的話,仍然會這樣作。也就是說,即便使用Spring 3.1,您也能夠經過命名空間保留PropertyPlaceholderConfigurer; 只是不更新schemaLocation 並繼續使用3.0 XSD。api
BeanFactoryPostProcessor
接口的一個實現。PropertyPlaceholderConfigurer能夠將上下文(配置文 件)中的屬性值放在另外一個單獨的標準java Properties文件中去。在XML文件中用${...}替換指定的properties文件中的值。這樣的話,只須要對properties文件進 行修改,而不用對xml配置文件進行修改。jdbc.driverClassName=com.mysql.jdbc.Driver jdbc.url=jdbc:mysql://localhost:3306/sys jdbc.username=root jdbc.password=123456
這是一個最基本的配置數據庫鏈接的設置,前綴統一使用jdbc來命名ide
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd"> <bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"> <property name="location"> <value>database.properties</value> </property> </bean> <bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource"> <property name="driverClassName" value="${jdbc.driverClassName}" /> <property name="url" value="${jdbc.url}" /> <property name="username" value="${jdbc.username}" /> <property name="password" value="${jdbc.password}" /> </bean> </beans>
經過給PropertyPlaceholderConfigurer 設置一個bean,指定
的名稱爲location,指定value值就可以引入外部配置文件,而後就可以經過${jdbc.key} 來獲取properties 中的值 工具
file.encoding=utf-8 file.name=encoding
<bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"> <property name="locations"> <list> <value>database.properties</value> <value>encoding.properties</value> </list> </property> </bean>
正如PropertyPlaceholderConfigurer基本概念中提到的,Spring可使用<context:property-placeholder/>
做爲PropertyPlaceholderConfigurer 的替代方案,代碼以下url
<!-- 指定單個properties --> <!--<context:property-placeholder location="database.properties" />--> <!-- 指定多個properties--> <!--<context:property-placeholder location="classpath:*.properties"/>--> <!--<context:property-placeholder location="classpath:database.properties, classpath:encoding.properties"/>--> <!-- 指定配置文件加載順序--> <context:property-placeholder order="0" location="database.properties" /> <context:property-placeholder order="1" location="encoding.properties" />
public class SubPropertyPlaceholderConfigurer extends PropertyPlaceholderConfigurer { private static Map<String, String> ctxPropertiesMap; @Override protected void processProperties(ConfigurableListableBeanFactory beanFactoryToProcess, Properties props) throws BeansException { // 調用父類PropertyPlaceholderConfigurer 的構造器 super.processProperties(beanFactoryToProcess, props); // 遍歷配置文件的key,Properties 對象就是導入的配置文件 Enumeration<?> enumeration = props.propertyNames(); while (enumeration.hasMoreElements()) { System.out.println(enumeration.nextElement()); } ctxPropertiesMap = new HashMap<String, String>(); for (Object key : props.keySet()) { String keyStr = key.toString(); String value = props.getProperty(keyStr); ctxPropertiesMap.put(keyStr, value); } } public static String getProperty(String name){ return ctxPropertiesMap.get(name); } }
<bean id="propertyPlaceholderConfigurer" class="com.cxuan.spring.common.SubPropertyPlaceholderConfigurer"> <property name="location"> <value>database.properties</value> </property> </bean> <bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource"> <property name="driverClassName" value="${jdbc.driverClassName}" /> <property name="url" value="${jdbc.url}" /> <property name="username" value="${jdbc.username}" /> <property name="password" value="${jdbc.password}" /> </bean>
如何啓動呢?其實引入的SubPropertyPlaceholderConfigurer 就可以隨着Spring加載配置文件而被加載。
直接定義main方法,用ClassPathXmlApplicayionContext引入任意的配置文件便可。
文章參考:
Spring裏PropertyPlaceholderConfigurer類的使用](https://www.cnblogs.com/huqianliang/p/5673701.html)
PropertyPlaceholderConfigurer讀取配置文件
https://blog.csdn.net/y_index/article/details/79893765
https://blog.csdn.net/eson_15/article/details/51365707
https://docs.spring.io/spring/docs/current/javadoc-api/org/springframework/beans/factory/config/PropertyPlaceholderConfigurer.html#processProperties-org.springframework.beans.factory.config.ConfigurableListableBeanFactory-java.util.Properties-
https://blog.csdn.net/wrs120/article/details/84554366