码迷,mamicode.com
首页 > 数据库 > 详细

用properties文件读取数据库的配置文件

时间:2015-12-15 12:29:00      阅读:177      评论:0      收藏:0      [点我收藏+]

标签:

当properties文件在src目录下时!!!以下三种路径都是正确的。(经过实验验证都可以读到配置文件),classpath不需要大写字母
<bean id="property"
        class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
        <property name="locations">
            <value>classpath:jdbc.properties</value>
        </property>
    </bean>

<bean id="property"
        class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
        <property name="locations">
            <value>jdbc.properties</value>
        </property>
    </bean>

<bean id="property"
        class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
        <property name="locations">
            <value>/jdbc.properties</value>
        </property>
    </bean>

 

用properties文件读取数据库的配置文件

标签:

原文地址:http://www.cnblogs.com/2027437606qq/p/5047717.html

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