设计题目:在线作业管理系统的设计与实现
I
摘 要
网络技术和计算机技术发展至今,已经拥有了深厚的理论基础,并在现实中
进行了充分运用,尤其是基于计算机运行的软件更是受到各界的关注。加上现在
人们已经步入信息时代,所以对于信息的宣传和管理就很关键。因此学生作业信
息的管理计算机化,系统化是必要的。设计开发在线作业管理系统不仅会节约人
力和管理成本,还会安全保存庞大的数据量,对于学生作业信息的维护和检索也
不需要花费很多时间,非常的便利。
在线作业管理系统是在 MySQL 中建立数据表保存信息,运用 SSM 框架和
Java 语言编写。并按照软件设计开发流程进行设计实现。系统具备友好性且功能
完善。本系统实现了作业管理,作业答案管理,作业批阅管理,教学资源管理,
作业提交管理以及作业统计等功能。
在线作业管理系统在让学生作业信息规范化的同时,也能及时通过数据输入
的有效性规则检测出错误数据,让数据的录入达到准确性的目的,进而提升在线
作业管理系统提供的数据的可靠性,让系统数据的错误率降至最低。
关键词:在线作业管理系统;MySQL;SSM 框架
II
Abstract
Network technology and computer technology have developed so far, they
already have a solid theoretical foundation and have been fully used in reality,
especially the software based on computer operation has attracted the attention of all
walks of life. In addition, now that people have entered the information age, the
promotion and management of information is very important. Therefore, it is
necessary to computerize and systemize the management of student work information.
Designing and developing an online homework management system will not only
save manpower and management costs, but also store a huge amount of data safely,
and it does not take a lot of time to maintain and retrieve student homework
information, which is very convenient.
The online job management system is to build a data table to save information in
MySQL, using SSM framework and Java language to write. And in accordance with
the software design and development process for design and implementation. The
system is friendly and fully functional. This system realizes the functions of
homework management, homework answer management, homework review
management, teaching resource management, homework submission management,
and homework statistics.
While the online homework management system standardizes student homework
information, it can also detect incorrect data in a timely manner through the validity
rules of data input, so that data entry can achieve the purpose of accuracy, thereby
improving the reliability of the data provided by the online homework management
system , To minimize the error rate of system data.
Key Words:Online job management system; MySQL; SSM framework
III
目 录
1 绪论 ...............................................1
1.1 选题背景 .........................................................................................................1
1.2 选题意义 .........................................................................................................1
1.3 研究内容 .........................................................................................................2
2 系统开发技术........................................3
2.1 JAVA 语言 .........................................................................................................3
2.2 SSM 框架 .........................................................................................................3
2.3 MYSQL 数据库 ...............................................................................................4
3 系统分析............................................5
3.1 可行性研究 ......................................................................................................5
3.1.1 经济可行性 ...........................................................................................5
3.1.2 时间可行性 ...........................................................................................5
3.1.3 操作可行性 ...........................................................................................5
3.2 系统性能分析 ..................................................................................................6
3.2.1 系统易用性 ...........................................................................................6
3.2.2 系统健壮性 ...........................................................................................6
3.2.3 系统安全性 ...........................................................................................6
3.3 系统流程分析 .................................................................................................6
3.4 系统功能分析 ..................................................................................................9
4 系统设计...........................................13
4.1 系统目标 ........................................................................................................13
4.2 功能结构设计 ................................................................................................14
4.3 数据库设计 ....................................................................................................16
4.3.1 数据库 E-R 图.....................................................................................16
4.3.2 数据库表结构 ....................................................................................19
IV
5 系统实现...........................................23
5.1 管理员功能实现 ...........................................................................................23
5.1.1 作业信息管理 ....................................................................................23
5.1.2 作业统计管理 ....................................................................................23
5.1.3 作业批阅管理 ....................................................................................24
5.2 教师功能实现 ...............................................................................................24
5.2.1 新增作业 ............................................................................................24
5.2.2 新增教学资源 ....................................................................................25
5.2.3 学生留言管理 ....................................................................................25
5.3 学生功能实现 ...............................................................................................26
5.3.1 作业信息 ............................................................................................26
5.3.2 教学资源 ............................................................................................26
5.3.3 通知公告 ............................................................................................27
6 系统测试 ...........................................28
6.1 系统测试的类型 ...........................................................................................28
6.2 功能测试 .......................................................................................................29
6.3 可用性测试 ...................................................................................................29
6.4 测试结果分析 ...............................................................................................29
结 论...............................................30
参考文献.............................................32
致 谢...............................................33