首页 > 代码库 > spring加载配置属性文件(properties)

spring加载配置属性文件(properties)

两种方法:


-----------------------------------1----------------------------

<!-- 加载链接数据库属性文件 -->
<context:property-placeholder location="classpath:dataSource-configer.properties" />



-----------------------------------2----------------------------

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



(实例参考上面spring配置)

本文出自 “东方小阁” 博客,请务必保留此出处http://lailai.blog.51cto.com/3362373/1558004

spring加载配置属性文件(properties)