网站大量收购闲置独家精品文档,联系QQ:2885784924

《J2EE系统架构和程序设计》课程设计实训项目——基于Struts + Hibernate框架技术的在线考试系统设计和实现[精品].doc

《J2EE系统架构和程序设计》课程设计实训项目——基于Struts + Hibernate框架技术的在线考试系统设计和实现[精品].doc

  1. 1、本文档共20页,可阅读全部内容。
  2. 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
《J2EE系统架构和程序设计》课程设计实训项目——基于StrutsHibernate框架技术的在线考试系统设计和实现[精品]

《J2EE系统架构和程序设计》课程设计实训项目——基于Struts + Hibernate框架技术的在线考试系统设计和实现 在线考试系统设计 1、系统概述 由于这次实训也做了一个web在线考试系统,所以把这次实训的整个过程记录下来,完成实用开发技术的这个大作业。经过一个学期的实用开发技术的学习,使我了解到了一些比较流行的开发技术,也在实践中锻炼了自己。 在线考试系统主要功能是提供一个在线的考试平台,教师可以利用此平台输入试卷,学生可以选择试卷考试,另外,系统也提供用户管理功能。系统总体用例如下图所示。 2、系统总体用例 3、系统模块划分 为方便系统的功能实现,系统模块按业务功能与平台功能划分为如下几个模块,以包的形式加以区分: 4、设计系统的DAO组件 为业务层提供通用数据访问接口,本系统采用一般DAO实现模式,现样,为了减少耦合度,采用了工厂模式,客户端要得某个具体DAO实现类,必须通过工厂类。 5、设计系统中的用户信息管理相关的程序类 6、设计系统中的试卷信息管理相关的程序类 7、分别根据用户设计模块和试卷功能模块设计对应的数据库表结构 (1)权限相关表设计 (2)用户相关表设计 (3)试卷相关表设计 8、创建数据库表的过程和文档 drop table if exists tbl_admin; drop table if exists tbl_class; drop table if exists tbl_question; drop table if exists tbl_student; drop table if exists tbl_teach; drop table if exists tbl_teacher; drop table if exists tbl_test; create table tbl_admin( adm_id int not null auto_increment, adm_name varchar(10), adm_password varchar(15), primary key (adm_id) ); create table tbl_class( cls_id int not null auto_increment, cls_name varchar(20), primary key (cls_id) ); create table tbl_question( qst_id int not null auto_increment, tst_id int, qst_title varchar(100), qst_answer char(1), qst_score int, primary key (qst_id) ); create table tbl_student( stu_id int not null auto_increment, cls_id int, stu_name varchar(10), stu_password varchar(15), primary key (stu_id) ); create table tbl_teach( tch_id int not null, cls_id int not null, primary key (tch_id, cls_id) ); create table tbl_teacher( tch_id int not null auto_increment, tch_name varchar(10), tch_password varchar(15), primary key (tch_id) ); create table tbl_test( tst_id int not null auto_increment, tch_id int, tst_name varchar(15), tst_time

您可能关注的文档

文档评论(0)

aena45 + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档