收藏 分享(赏)

基于Java EE技术的学生管理系统研究与实现计算机专业.doc

上传人:g****t 文档编号:1830130 上传时间:2023-04-23 格式:DOC 页数:69 大小:2.48MB
下载 相关 举报
基于Java EE技术的学生管理系统研究与实现计算机专业.doc_第1页
第1页 / 共69页
基于Java EE技术的学生管理系统研究与实现计算机专业.doc_第2页
第2页 / 共69页
基于Java EE技术的学生管理系统研究与实现计算机专业.doc_第3页
第3页 / 共69页
基于Java EE技术的学生管理系统研究与实现计算机专业.doc_第4页
第4页 / 共69页
基于Java EE技术的学生管理系统研究与实现计算机专业.doc_第5页
第5页 / 共69页
基于Java EE技术的学生管理系统研究与实现计算机专业.doc_第6页
第6页 / 共69页
亲,该文档总共69页,到这儿已超出免费预览范围,如果喜欢就下载吧!
资源描述

1、基于Java EE技术的学生管理系统研究与实现摘 要随着信息技术的发展,信息化逐渐扩展到了校园管理、行政办公中,现有学生管理系统因其适应性问题已不能满足目前实际的需要。随着高校招生的增加,学生管理系统的复杂度越来越高,迫切需要借助计算机来实现学生信息管理和统计,更好的为师生提供服务。论文在研究基于优先级回溯的排课算法的基础之上,使用UML建模语言进行业务建模与设计,基于Java EE平台研发出具有一定特色的学生管理系统,并具有较好的可靠性、可移植性和安全性。论文的主要工作如下:(1)分析当前环境下学生管理的业务应用流程,构建学生管理的业务模型,并进一步应用UML进行用例描述,系统建模与设计。(

2、2)在传统优先级回溯算法基础上,提出基于优先级回溯的排课算法;该算法融入了实际院校的优先级选课因素,有效地提升了排课算法在实际中的应用,解决了资源冲突问题。(3)在前期需求与数据分析基础上,对系统功能模型进行进一步的设计,将Java EE技术应用到系统的研发过程,完成基础课程维护、学生管理、排课管理等核心功能模块,实现一套完整的学生管理系统。论文进一步结合本校学校学生管理业务实践,将学生管理系统在全校推广试运行,取得了较好的成效。该管理系统上线运行大大地改善了学生管理工作效率, 为学校节约了大量的人力、物力,增强学生、班级、教师、专业间的信息交流和互动,促进学生管理工作的开展,对高校实现信息化

3、具有重要的参考意义。 关键词:排课算法;Java EE;优先级回溯;UMLAbstract With the development of information technology, it gradually extended to the campus management, administrative offices and the existing student management system. Student management system has been unable to meet the current actual needs because of the a

4、daptability. With the increase enrollment of college and the increasing complexity of the system, its urgent to use computers to achieve student information management and statistics, and to provide the better services for teachers and students. Based on priority Scheduling algorithms backtracking,

5、this paper used UML modeling language to conduct business modeling and design, and developed student management system based on the Java EE platform. The system has certain characteristics, and has good reliability, portability and security. The main work is as follows:(1) Analysis of business appli

6、cation processed in the new environment of student management to build the business model and further application of the UML for case descriptions, system modeling and design.(2) The traditional priority backtracking algorithm is proposed based on priority-based backtracking Scheduling algorithms. T

7、his algorithm incorporates factors that the actual priority elective institutions to effectively enhance the Scheduling algorithms used in practice to solve the resource conflicts.(3) After the early requirements and data analysis, we given a further design of the functional model of the system. Usi

8、ng the Java EE technology to develop the system, this article completed the core function module as basic course maintenance, student management, and course scheduling and management. At last we achieved a complete set of student management system.Further integrating the school student management pr

9、actices, the student management system is promoted to test run in the school, and achieved good results. The system line operation greatly improved student management efficiency to save a lot of manpower, material resources, which enhanced information exchange and interaction between students, class

10、es and teachers, professional and promoted to carry out students management work on the university, had important reference value to achieve information technology.Keywords: curriculum arrangement algorithm; Java EE; Priority backtracking;UML;目 录学位论文原创性声明I学位论文版权使用授权书I摘 要IIAbstractIII目 录V插图索引VIII附表索引

11、X第一章绪 论11.1 课题研究背景和意义11.2 国内外研究现状21.3 本文的主要研究工作41.4 论文组织51.5 小结5第二章 系统相关技术62.1系统体系结构介绍与比较62.1.1 C/S系统体系结构62.1.2 B/S系统体系结构72.1.3 C/S和B/S的比较82.2系统开发技术介绍82.2.1 RUP开发过程82.2.2 Java EE技术架构92.2.3 开发工具102.2.4 数据库102.2.5 UML建模语言112.3 排课算法介绍122.3.1 优先级回溯算法122.3.2 遗传算法132.3.3 排课算法综合分析132.4 小结13第三章 系统需求分析143.1

12、系统总体目标143.2 系统功能需求分析143.2.1 学生管理组织机构143.2.2 功能需求描述153.2.3 系统用例163.2.4 时序图183.3 系统非功能性需求223.4 小结23第四章 系统设计244.1 系统设计原则244.2系统架构设计254.2.1硬件架构设计254.2.2 软件体系结构设计254.3 教务排课算法设计264.4 系统功能模块设计274.4.1 系统类设计284.4.2登陆验证模块设计304.4.3系统权限模块设计304.5 数据库设计314.5.1 概念结构设计324.5.2 逻辑结构设计334.6 小结35第五章 系统实现与测试365.1 公共模块实现

13、365.2 系统核心实现395.2.1系统登录模块405.2.2 学生管理模块425.2.2.1 DAO封装425.2.2.2 DAO的工厂模式实现435.2.2.3 界面原型455.2.3 学生排课模块505.3 系统测试515.3.1测试技术515.3.2测试用例525.3.3测试总结分析535.4 小结54结论55参考文献56致 谢59插图索引图2-1 两层C/S架构7图2-2 三层C/S架构7图3-1学生管理组织机构15图3-2学工处人员用例17图3-3 系统管理员用例17图3-4教师用例18图3-5 学生用例18图3-6 学生登录时序19图3-7 教师录入成绩时序19图3-8 学生选

14、课时序20图3-9 学生信息录入时序21图3-10学生缴费时序21图4-1 系统架构图25图4-2 软件系统架构25图4-3 技术架构26图4-4 系统功能模块27图4-5 核心实体类28图4-6 核心业务类29图4-7 核心控制类29图4-8 用户登录界面30图4-9 用户登录系统流程30图4-10权限角色设计31图4-11系统ER32图5-1 登录界面40图5-2 登录失败界面42图5-3(a)学生信息管理45图5-3(b)学生信息录入管理45图5-4 学生奖励登记管理46图5-5排课课表46图5-6编辑课表47图5-7自动排课47图5-8展示了专业设置相关的内容。48图5-8专业设置48

15、图5-9系统维护48图5-10权限和模块控制49附表索引表4-1 核心控制类说明29表4-2 教师信息表的设计33表4-3 课程信息表33表4-4 教师课程信息表的设计34表4-5 专业信息表的设计34表4-6学生奖惩表34表4-7奖励学生表35表4-8困难补助学生表35表5-1 JSP分页实例38表5-2 后台分页38表5-3 用户登录模块测试用例表52表5-4管理员登录模块测试用例表53IX第一章绪 论学生工作在高等教育中占有重要的地位,是实现人才培养目标的一个重要组成部分。国家教育改革不断深入,素质教育全面推进,各个学校办学规模不断扩大,教学资源日益紧张。对学校管理部门来说,这不仅增加了工作量,也增加了工作难度。手工记录学生信息存在信息量大,查找困难,保存不便,不可重复使用等问题,

展开阅读全文
相关资源
猜你喜欢
相关搜索

当前位置:首页 > 资格与职业考试 > 其它

copyright@ 2008-2023 wnwk.com网站版权所有

经营许可证编号:浙ICP备2024059924号-2