当前位置: 代码迷 >> J2EE >> Spring 怎么读取properties文件
  详细解决方案

Spring 怎么读取properties文件

热度:198   发布时间:2016-04-22 03:17:43.0
Spring 如何读取properties文件
如题 谢谢

------解决方案--------------------
BeanDefinitionRegistry reg = new DefaultListableBeanFactory();
 PropertiesBeanDefinitionReader reader = new PropertiesBeanDefinitionReader(reg);
 reader.loadBeanDefinitions(new ClassPathResource("beanConfig.properties"));
 BeanFactory factory = (BeanFactory)reg;


或者


<bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="location">
<value>src/jdbc.properties</value>
</property>
</bean>
  相关解决方案