spring 装载多个properties文件

    <bean id="propertyConfig"   class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer" >
        <property name="locations">
            <list>
                <value>classpath:database.properties</value>
                <value>classpath:quartz.properties</value>
            </list>
        </property>
    </bean>


启动tomcat后

INFO [Thread-1] org.springframework.context.support.AbstractApplicationContext.obtainFreshBeanFactory(426) | Bean factory for application context [org.springframework.web.context.support.XmlWebApplicationContext@2778c490]: org.springframework.beans.factory.support.DefaultListableBeanFactory@476dc5c9
 INFO [Thread-1] org.springframework.core.io.support.PropertiesLoaderSupport.loadProperties(178) | Loading properties file from class path resource [database.properties]
 INFO [Thread-1] org.springframework.core.io.support.PropertiesLoaderSupport.loadProperties(178) | Loading properties file from class path resource [quartz.properties]



  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
好的,关于spring配置文件加载properties文件,可以使用以下几种方式: 1. 使用PropertyPlaceholderConfigurer属性占位符 可以在配置文件中使用${}占位符来引用属性值,同时需要在配置文件中引入对应的*.properties文件。在Spring容器启动时,会通过PropertyPlaceholderConfigurer将properties配置文件中的键值对装载Spring的环境变量中,供${}占位符使用。 例如: ``` <bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"> <property name="locations"> <list> <value>classpath:/config/app.properties</value> </list> </property> </bean> <bean id="user" class="com.example.User"> <property name="name" value="${user.name}"/> <property name="age" value="${user.age}"/> </bean> ``` 在上面的例子中,将classpath:/config/app.properties中的键值对装载Spring的环境变量中,供${}占位符使用。 2. 使用util命名空间的PropertiesFactoryBean 可以在Spring配置文件中使用util命名空间的PropertiesFactoryBean来装载properties文件中的属性,并且使用${}占位符引用这些属性值。 例如: ``` <util:properties id="appConfig" location="classpath:/config/app.properties"/> <bean id="user" class="com.example.User"> <property name="name" value="${user.name}" /> <property name="age" value="${user.age}" /> </bean> ``` 在上面的例子中,通过util:properties装载classpath:/config/app.properties中的属性。在User bean中使用${}占位符引用属性值。 希望这些方法能够帮到您!

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值