daoconfig.java

来自「jsp ,java写的blog软件,用到hibernate,spring fra」· Java 代码 · 共 60 行

JAVA
60
字号
package cn.hxex.blog.config;

import org.apache.commons.lang.builder.ReflectionToStringBuilder;

import cn.hxex.blog.exception.BlogException;

/**
 * DAO配置信息类
 */
public class DaoConfig {

	private String id;
	private String type;

	public String getId() 
	{
		return id;
	}
	public void setId(String id) 
	{
		this.id = id;
	}
	
	public String getType() 
	{
		return type;
	}
	public void setType(String type) 
	{
		this.type = type;
	}	
	
	private Object instance;

	/**
	 * 得到配置的对象的实例
	 */
	public Object getInstance() 
	{
		if( null!=instance ) return instance;
		
		try
		{
			Class cls = Class.forName( getType() );
			instance = cls.newInstance();
			return instance;
		}
		catch( Exception ex )
		{
			throw new BlogException( "Couldn't find class:" + getType() );
		}
	}
	
	public String toString()
	{
		return ReflectionToStringBuilder.toString( this );
	}

}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?