读取config.properties 文件信息的方式
注:默认优先读取resource文件夹下的文件
配置文件截图:
默认先读取resource文件夹下的config.properties
然后根据${pt.env} 去其他目录下config.properties对应文件中获取
亲测有效:
Properties prop = new Properties();
prop= PropertiesLoaderUtils.loadAllProperties("config.properties");
代码截图:
百度上介绍了以下几种方式,但是亲测结果是读到的 in 为空(有待研究)
1.InputStream in=new BufferedInputStream(new FileInputStream("config.properties"));
2.InputStream in=Config.class.getClassLoader().getResourceAsStream("config.properties");
3.InputStream aa=Properties.class.getResourceAsStream("config.properties");
prop.load(in);