如何在Spring中的@PropertySource中引用远程服务器上的配置文件

时间:2016-08-01 07:36:47

标签: java spring properties

我有一个Configuration类,其成员将被设置为从属性文件中读取。

@Configuration
@PropertySource("how to specify file on remote server")
public class DbConfiguration {

    @Value("${hic.db.machine}")
    private String machine;
}

我试过了sftp://10.6.X.XX/path/to/file,但是说找不到文件 我试过file://10.6.X.XX/path/to/file,但是说连接被拒绝了。

我知道如何实现这一目标。

0 个答案:

没有答案