PropertiesUtils(普遍做法)

Posted lingtiaoti

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PropertiesUtils(普遍做法)相关的知识,希望对你有一定的参考价值。

public class PropertiesUtil{

  private static Properties properties;

  static{

    InputStream in = null;

    try{

      in = PropertiesUtil.class.getClassLoader().getResourceAsStream("jdbc.properties");

      properties = new Properties();

      properties.load(in);

    }catch(Exception e){

      e.printStackTrace();

    }finally{

      try{

        if(in != null){

          in.close();

        }

      }catch(Exception e){

        e.printStackTrace();

    }

  }

  }

   public static Properties getPropertis(){

    return properties;  

  }

  

}

以上是关于PropertiesUtils(普遍做法)的主要内容,如果未能解决你的问题,请参考以下文章

数据库存储 层次树形结构 的标准做法

Vue 温故而知新 props如何双向属性绑定

如何在@nestjs/mongoose 模式中设置枚举

在 JavaScript 中定义只读属性

在 JavaScript 中定义只读属性

#include <Windows.h> 是不好的做法吗?