@PropertySource绝对路径(java.io.FileNotFoundException问题解决)
Posted huahua035
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了@PropertySource绝对路径(java.io.FileNotFoundException问题解决)相关的知识,希望对你有一定的参考价值。
经常使用@PropertySource 来指定配置文件,然后@value获取配置参数:
1 @Component 2 @PropertySource(value= "classpath:rules.yml") 3 @ConfigurationProperties(prefix = "busi-udid-mapper")
默认,配置文件都是指定classpath下的文件路径,如果使用绝对路径(操作系统下某个配置文件路径),请使用如下方式:
1 @Component 2 @PropertySource(value= "file:$rule.fullpath") 3 @ConfigurationProperties(prefix = "busi-udid-mapper")
这里的rule.funnpath是在系统配置文件中变量化的参数
参考:
http://www.voidcn.com/article/p-scladotq-bva.html
以上是关于@PropertySource绝对路径(java.io.FileNotFoundException问题解决)的主要内容,如果未能解决你的问题,请参考以下文章
SPRING MVC - 使用外部文件作为@PropertySource