我們都知道,Spring可以@Value的方式讀取properties中的值,只需要在配置檔案中配置org.springframework.beans.factory.config.PropertyPlaceholderConfigurer
<bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"> <property name="location"> <value>classpath:config.properties</value> </property> </bean>
那麼在需要用到這些獲取properties中值的時候,可以這樣使用
@Value("${sql.name}") private String sqlName;
但是這有一個問題,我每用一次配置檔案中的值,就要宣告一個區域性變數。有沒有用程式碼的方式,直接讀取配置檔案中的值。
答案就是重寫PropertyPlaceholderConfigurer
public class PropertyPlaceholder extends PropertyPlaceholderConfigurer { private static Map<String,String> propertyMap; @Override protected void processProperties(ConfigurableListableBeanFactory beanFactoryToProcess, Properties props) throws BeansException { super.processProperties(beanFactoryToProcess, props); propertyMap = new HashMap<String, String>(); for (Object key : props.keySet()) { String keyStr = key.toString(); String value = props.getProperty(keyStr); propertyMap.put(keyStr, value); } } //static method for accessing context properties public static Object getProperty(String name) { return propertyMap.get(name); } }
在配置檔案中,用上面的類,代替PropertyPlaceholderConfigurer
<bean id="propertyConfigurer" class="com.gyoung.mybatis.util.PropertyPlaceholder"> <property name="location"> <value>classpath:config.properties</value> </property> </bean>
這樣在程式碼中就可以直接用程式設計方式獲取
PropertyPlaceholder.getProperty("sql.name");
如果是多個配置檔案,配置locations屬性
<bean id="propertyConfigurer" class="com.gyoung.mybatis.util.PropertyPlaceholder"> <property name="ignoreResourceNotFound" value="true"/> <property name="locations"> <list> <value>file:./jdbc.properties</value> <value>file:./module.config.properties</value> <value>classpath:jdbc.properties</value> <value>classpath*:*.config.properties</value> </list> </property> </bean>