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文件的两种方法的主要内容,如果未能解决你的问题,请参考以下文章

十八 Spring的JDBC模板:引入外部属性文件

Spring 应用外部属性文件 配置 context 错误

logback.xml引入外部配置文件

Spring Cloud Refresh 事件无法识别已删除的属性?

SpringBoot --外部配置的属性使用

spring-boot打包,引入外部jar包问题