J2EE DAO层和业务逻辑层的设计

举个例子,比如要做一个学生选课管理系统,数据库中有三张表,分别是STUDENTS,TEACHER,COURSE

DAO层接口设计:
InterfaceStudentDAO
{
publicvoidInsertStudent(Studentstu);

publicvoidremoveStudent(longid);

publicvoidupdateStudent(Studentstu);

publicStudentfindStudent(longid);

/**
*其它DAO方法
**/
}

InterfaceTeacherDAO
{
publicvoidinsertTeacher(Teachertea);

publicvoidremoveTeacher(longid);

publicvoidupdateTeacher(Teachertea);

publicTeacherfindTeacher(longid);

/**
*其它DAO方法
**/
}

InterfaceCourseDAO
{
publicvoidinsertCourse(Coursec);

publicvoidremoveCourse(longid);

publicvoidupdateCourse(Coursec);

publicTeacherfindCourse(longid);

/**
*其它DAO方法
**/
}

业务层接口设计:
InterfaceStudentService
{
publicvoidsaveStudent(Studentstu);

publicvoiddeleteStudent(longid);

publicvoidupdateStudent(Studentstu);

publicStudentgetStudent(longid);

/**
*其它Service方法
**/
}

InterfaceTeacherService
{
publicvoidsaveTeacher(Teachertea);

publicvoiddeleteTeacher(longid);

publicvoidupdateTeacher(Teachertea);

publicTeachergetTeacher(longid);

/**
*其它Service方法
**/
}

InterfaceCourseService
{
publicvoidsaveCourse(Coursec);

publicvoiddeleteCourse(longid);

publicvoidupdateCourse(Coursec);

publicTeachergetCourse(longid);

/**
*其它Service方法
**/
}


将这两层接口写好后分别创建它们的实现类,比如:
publicclassStudentDAOImplimplementsStudentDAO;
publicclassStudentServiceImplimplementsStudentService;

其中StudentServiceImpl中的方法调用StudentDAOImpl中的接口方法

其它类的写法类似不再赘述。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值