博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Spring读取Properties配置文件
阅读量:6713 次
发布时间:2019-06-25

本文共 611 字,大约阅读时间需要 2 分钟。

hot3.png

首先在配置文件中配置PropertyPlaceholderConfigurer 

单个配置文件: 
<bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">  
  <property name="locations" value="classpath:com/foo/jdbc.properties"/>  
</bean>  
多个配置文件: 
<bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"> 
  <property name="locations"> 
    <list>            
        <value>classpath:jdbc.properties</value> 
        <value>classpath:config.properties</value> 
   </list>
</property> 
</bean> 
然后在需要的地方直接以下方式引用: 
<property name="url" value="${jdbc.url}"/>  

转载于:https://my.oschina.net/u/1169079/blog/186429

你可能感兴趣的文章
我的友情链接
查看>>
我的友情链接
查看>>
cacti自定义数据收集脚本,创建Data Templates和Graph Templates
查看>>
centos yum安装rrdtool
查看>>
我的友情链接
查看>>
我的友情链接
查看>>
开发跨平台app推荐React Native还是flutter?
查看>>
我的友情链接
查看>>
perl将字符串时间转换成epoch time
查看>>
ocserv配置文件
查看>>
对你同样重要的非技术贴,一封有效的求职信的具体写法
查看>>
在路由器里插入和删除ACL
查看>>
我的友情链接
查看>>
前端开发IDE
查看>>
OpenStack从入门到放弃
查看>>
戴尔和EMC已经成为正式的竞争对手
查看>>
6425C-Lab12 管理DC(1)
查看>>
RocketMQ调研笔记
查看>>
maven 注册 jar
查看>>
高并发写入mysql的设计
查看>>