我需要从我使用变量config.properties
设置的位置读取-Dapp.conf=/path/to/config.properties
文件,并在启动应用程序时将其设置为数据源。
文件应位于文件系统中的任何位置。
怎么做?
答案 0 :(得分:2)
您可以将properties
文件作为下一个加载:
Properties p = new Properties();
try (Reader reader = new FileReader(System.getProperty("app.conf"))) {
p.load(reader);
}
加载后,您可以使用properties
实例设置数据源配置。