spring 配置文件 引入外部的property文件的两种方法
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring 配置文件 引入外部的property文件的两种方法相关的知识,希望对你有一定的参考价值。
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文件的两种方法的主要内容,如果未能解决你的问题,请参考以下文章