SPRING MVC - 使用外部文件作为@PropertySource
Posted
技术标签:
【中文标题】SPRING MVC - 使用外部文件作为@PropertySource【英文标题】:SPRING MVC - Use an external file as @PropertySource 【发布时间】:2017-01-17 21:25:08 【问题描述】:我想知道如何使用外部文件在不同的上下文中为我的应用加载一些属性..
我知道我可以在PropertySource
注释中传递一个文件。问题是文件的路径。
我的意思是,它看起来想要文件的完整路径,但不同的环境对Tomcat
目录有不同的路径。
我的问题是: 存储这些文件的正确目录在哪里(它必须在应用程序目录之外,否则在每次部署时它都会被删除)以及如何在我的应用程序中链接它。
例如,现在我在tomcat的/webapps
目录下创建了一个/config
目录。
我可以在我的 Mac 上以这种方式加载文件:
@PropertySource("file:/Library/Tomcat/webapps/config/db.properties" )
但我的生产应用程序在 Linux 服务器上,显然路径不同...
有任何想法,或者更好的是管理它的最佳实践吗?
谢谢
【问题讨论】:
【参考方案1】:前段时间我有一个类似的问题要解决,我们所做的是我们提供了服务器启动时属性文件的外部目录路径,如下:
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.PropertySource;
import org.springframework.context.annotation.PropertySources;
@Configuration
@PropertySources(@PropertySource("$ext.properties.dir:classpath:/db.properties") )
public class ApplicationConfig
对于基于 XML 的配置:
<context:property-placeholder
location="$ext.properties.dir:classpath:/db.properties" order="-1"
ignore-unresolvable="true" ignore-resource-not-found="true" />
并根据环境从application-server/jvm
提供ext.properties.dir
值:
例如,对于 DEV:
-Dext.properties.dir=file:/dev/Library/Tomcat/webapps/config/
对于 PROD:
-Dext.properties.dir=file:/prod/Library/Tomcat/webapps/config/
【讨论】:
以上是关于SPRING MVC - 使用外部文件作为@PropertySource的主要内容,如果未能解决你的问题,请参考以下文章
spring boot框架学习之重要注解3注解方式读取外部资源配置文件
Spring MVC多个properties 根据VM options参数加载不同的properties 文件