标签:spring
两种方法:
-----------------------------------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
原文地址:http://lailai.blog.51cto.com/3362373/1558004