spring 读取properties配置文件

本文介绍如何在Spring中使用PropertyPlaceholderConfigurer和PropertyOverrideConfigurer配置外部属性文件,并解释了这两种配置方式的区别及注意事项。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

在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类似,如下配置:

<bean id= "propertyConfigurer"          
        class = "org.springframework.beans.factory.config.PropertyPlaceholderConfigurer" >          
    <property name="location"  value= "/WEB-INF/jdbc.properties" />          
</bean>          
<bean id="dataSource"   class = "org.apache.commons.dbcp.BasicDataSource"            
        destroy-method="close" >          
    <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>       
   
    在jdbc.properties属性文件中定义属性值:    
    jdbc.driverClassName= com.mysql.jdbc.Driver    
    jdbc.url= jdbc:mysql://localhost:3309/sampledb     
    jdbc.username=root    
 jdbc.password=1234     

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值