spring 读取properties文件

方法一:spring工具类

public static Properties readProperties(String fileName){
    Resource resource = new ClassPathResource(fileName);
    Properties props = new Properties();
    try {
      props = PropertiesLoaderUtils.loadProperties(resource);
    } catch (IOException e) {
      logger.error(e);
    }
    return props;
  }

方法二:java.util工具类

public static Properties readProperties(String fileName){
    InputStream inputStream = this.getClass().getClassLoader().getResourceAsStream(fileName);
    Properties props = new Properties();
    try{
      props.load(inputStream);
    } catch (IOException e){
      logger.error(e);       
    }
    return props;
}



你可能感兴趣的:(spring 读取properties文件)