⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 daoconfig.java

📁 jsp ,java写的blog软件,用到hibernate,spring frameworks
💻 JAVA
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -