在Spring启动时从外部读取属性文件?

时间:2018-01-08 17:35:10

标签: java

我是 Spring Boot 的新手,但拥有丰富的传统Spring MVC经验。在我的传统应用程序中,我可以从应用程序外部读取 .properties 文件,如下所示。如果可能,有人可以告诉我如何在 Spring Boot 中实现以下目标吗?

<beans:bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
    <beans:property name="locations">
        <beans:list>
            <beans:value>file:///${user.home}/prp/db.properties</beans:value>
            <beans:value>file:///${user.home}/prp/app.properties</beans:value>
         </beans:list>
    </beans:property>
</beans:bean>

0 个答案:

没有答案