浏览 1111 次
锁定老帖子 主题:单例实现解析配置文件辅助类
精华帖 (0) :: 良好帖 (0) :: 新手帖 (0) :: 隐藏帖 (0)
|
|
---|---|
作者 | 正文 |
发表时间:2009-09-21
最后修改:2009-09-21
package com.yunchow.util; /** * read the jdbc connection information * @author yunchow * @version 1.2 09/8/17 */ final class ConfigBean extends java.util.Properties { private static final long serialVersionUID = 1L; private static ConfigBean instance; private static final byte[] lock = new byte[0]; private static String fileName; private ConfigBean() { try { load(ConfigBean.class.getClassLoader().getResourceAsStream(fileName)); } catch(Exception ex) { throw new ExceptionInInitializerError(ex); } } /** 设置配置文件的名字 */ public static void setConfigFile(String file) { fileName = file; } /** 根据传过来的文件名, 得到一个配置文件的实例 */ public static ConfigBean getInstance(String file) { fileName = file; return getInstance(); } /** 得到一个配置文件的实例 */ public static ConfigBean getInstance() { if(instance == null) { synchronized(lock) { if(instance == null) { instance = new ConfigBean(); } } } // System.out.println("Jdbc config bean ->" + instance); return instance; } } 声明:ITeye文章版权属于作者,受法律保护。没有作者书面许可不得转载。
推荐链接
|
|
返回顶楼 | |