java读取配置文件
2021-02-02 10:17
标签:prope vat puts redis 配置文件 NPU ring ESS col 推荐:使用Spring自带工具类ClassUtils读取配置文件 java读取配置文件 标签:prope vat puts redis 配置文件 NPU ring ESS col 原文地址:https://www.cnblogs.com/gjq1126-web/p/12808691.html/**
* 初始化配置redis文件
* @param configFileName
*/
private void initProperties(String configFileName) {
try {
InputStream resourceAsStream = ClassUtils.getDefaultClassLoader().getResourceAsStream(configFileName);
properties.load(resourceAsStream);
} catch (IOException e) {
log.error(e.getMessage());
}
}