如何使用Spring Boot从java属性文件中读取数据
2022-09-01 04:58:02
我有一个弹簧启动应用程序,我想从我的文件中读取一些变量。事实上,下面的代码就是这样做的。但我认为有一个很好的方法来选择这种替代方案。application.properties
Properties prop = new Properties();
InputStream input = null;
try {
input = new FileInputStream("config.properties");
prop.load(input);
gMapReportUrl = prop.getProperty("gMapReportUrl");
} catch (IOException ex) {
ex.printStackTrace();
} finally {
...
}