spring 读取properties配置文件

在Spring中,使用PropertyPlaceholderConfigurer和PropertyOverrideConfigurer可以在XML配置文件中加入外部属性文件
但使用这种方式,有一些需要注意的地方

1.首先在主类中,需要使用ClassPathXmlApplicationContext来读取spring配置xml文件
如:

ApplicationContext context = new ClassPathXmlApplicationContext("example4/appcontext.xml");
HelloWorld hw = (HelloWorld)context.getBean("fileHelloWorld");
log.info(hw.getContent());

直接以beanFactory方式,是无法使用PropertyPlaceholderConfigurer或PropertyOverrideConfigurer的
如下方式不行:
Resource resource = new ClassPathResource("example4/appcontext.xml");
BeanFactory factory = new XmlBeanFactory(resource);
HelloWorld hw = (HelloWorld) factory.getBean("fileHelloWorld");
log.info(hw.getContent());

2.PropertyOverrideConfigurer需要考虑bean的名称
如下是正确配置:
appcontext.xml:
<bean name="fileHelloWorld" class="example4.HelloWorld">
    <constructor-arg>
        <ref bean="fileHello"/>
    </constructor-arg>
    <property name="statusname">
        <value>${fileHelloWorld.statusname}</value>
    </property>
</bean>

<bean id="propertyConfigurer"
      class="org.springframework.beans.factory.config.PropertyOverrideConfigurer">
    <property name="location" value="classpath:example4/helloworld.properties"/>
</bean>

helloworld.properties:
fileHelloWorld.statusname=this is status Name;

如果少了${fileHelloWorld.statusname}中少了Bean名称fileHelloWorld,会导致错误发生
这应该是种强制某个配置是属性某个Bean

3.PropertyPlaceholderConfigurer的配置不需要考虑Bean的名称,直接配置就可以了
配置方式和PropertyOverrideConfigurer类似,如下配置:

Java代码 复制代码
  1. <bean id= "propertyConfigurer"         
  2.         class = "org.springframework.beans.factory.config.PropertyPlaceholderConfigurer" >         
  3.     <property name="location"  value= "/WEB-INF/jdbc.properties" />         
  4. </bean>         
  5. <bean id="dataSource"   class = "org.apache.commons.dbcp.BasicDataSource"           
  6.         destroy-method="close" >         
  7.     <property name="driverClassName"  value= "${jdbc.driverClassName}"  />         
  8.     <property name="url"  value= "${jdbc.url}"  />         
  9.     <property name="username"  value= "${jdbc.username}"  />         
  10.     <property name="password"  value= "${jdbc.password}"  />         
  11. </bean>      
  12.   
  13.     在jdbc.properties属性文件中定义属性值:   
  14.     jdbc.driverClassName= com.mysql.jdbc.Driver   
  15.     jdbc.url= jdbc:mysql://localhost:3309/sampledb    
  16.     jdbc.username=root   
  17.  jdbc.password=1234    
  18.      
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值