泛型数据访问对象模式

GenericDAO
/**
* 所有DAO都共享的CRUD(create, read, update, delete) 基本数据访问操作的定义
*/
public interface GenericDAO<T, ID extends Serializable,E extends Exception> {

/**根据ID查询唯一对象*/
T findById(ID id) throws E;

/** 查询所有对象 */
List<T> searchAll() throws E;

/** 条件查询*/
List<T> search(T condition) throws E;

/**
* 插入或修改
*/
public void save(T entity) throws E;

/**删除*/
void delete(ID id) throws E;

void deleteBat(ID[] ids) throws E;

}

IEmpDao

public interface IEmpDao extends GenericDAO<Employee, Integer,SQLException> {

}

EmpDao,//在方法体里面写上自己的具体方法实现即可!
public class EmpDao implements IEmpDao {

public void delete(Integer id) throws SQLException {
}

public void deleteBat(Integer[] id) throws SQLException {
}

public Employee findById(Integer id) throws SQLException {
return null;
}

public void save(Employee entity) throws SQLException {

}

public List<Employee> search(Employee condition) throws SQLException {
return null;
}

public List<Employee> searchAll() throws SQLException {
return null;
}
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值