码迷,mamicode.com
首页 > 编程语言 > 详细

spring 配置文件 引入外部的property文件的两种方法

时间:2016-09-22 16:57:45      阅读:149      评论:0      收藏:0      [点我收藏+]

标签:

spring  的配置文件

引入外部的property文件的两种方法

<!-- 引入jdbc配置文件    方法一 -->
<bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="locations">
<list>
<!--要是有多个配置文件,只需在这里继续添加即可 -->
<value>classpath:properties/*.properties</value>
</list>
</property>
</bean>

 

<!-- 引入jdbc配置文件    方法二 -->

<context:property-placeholder location="classpath:jdbc.properties" />

 

spring 配置文件 引入外部的property文件的两种方法

标签:

原文地址:http://www.cnblogs.com/qypx520/p/5897039.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!