我們都知道,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");
//或者
@Value("#{'${sql.name}'.split(',')}")
private List<String> nameList;
如果是多個配置文件,配置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>
轉自:https://www.cnblogs.com/Gyoung/p/5507063.html