📄 daoconfig.java
字号:
package cn.hxex.blog.config;
import org.apache.commons.lang.builder.ReflectionToStringBuilder;
import cn.hxex.blog.exception.BlogException;
public class DaoConfig {
private String id;
private String type;
private Object instance;
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;
}
public Object getInstance(){
if(instance != null)
{
return instance;
}
try {
Class cls = Class.forName(this.getType());
instance = cls.newInstance();
return instance;
} catch (Exception e) {
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 + -