论坛首页 入门技术论坛

单例实现解析配置文件辅助类

浏览 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;
	}
	
	
}
论坛首页 入门技术版

跳转论坛:
Global site tag (gtag.js) - Google Analytics