摘要
随着信息技术在管理上越来越深入而广泛的应用,管理信息系统的实施在技术上已逐步成熟。本文介绍了编程训练系统的开发全过程。通过分析编程训练系统管理的不足,创建了一个计算机管理编程训练系统的方案。文章介绍了编程训练系统的系统分析部分,包括可行性分析等,系统设计部分主要介绍了系统功能设计和数据库设计。
本编程训练系统管理员功能有管理员和用户。管理员功能有个人中心,用户管理,题库资源管理,用户交流,试卷管理,留言板管理,试题管理,系统管理,考试管理。用户可以查看题库资源,可以参加考试,进行留言等操作。因而具有一定的实用性。
本站是一个B/S模式系统,采用Spring Boot框架,MYSQL数据库设计开发,充分保证系统的稳定性。系统具有界面清晰、操作简单,功能齐全的特点,使得编程训练系统管理工作系统化、规范化。本系统的使用使管理人员从繁重的工作中解脱出来,实现无纸化办公,能够有效的提高编程训练系统管理效率。
关键词:编程训练系统;Spring Boot框架;MYSQL数据库
Abstract
With the deepening and extensive application of information technology in management, the implementation of management information systems has gradually matured in technology. This article introduces the entire development process of the programming training system. By analyzing the deficiencies of the programming training system management, a program of computer management programming training system was created. The article introduces the system analysis part of the programming training system, including feasibility analysis, etc. The system design part mainly introduces the system function design and database design.
This programming training system administrator function has administrator and user. Administrator functions include personal center, user management, question bank resource management, user communication, test paper management, message board management, test question management, system management, and exam management. Users can view the question bank resources, take the exam, leave a message, and other operations. So it has a certain practicability.
This site is a B/S model system, using Spring Boot framework, MYSQL database design and development, fully guarantee the stability of the system. The system has the characteristics of clear interface, simple operation and complete functions, which makes the management of the programming training system systematized and standardized. The use of this system frees managers from heavy work, realizes a paperless office, and can effectively improve the management efficiency of the programming training system.
Keywords:Programming training system; Spring Boot framework; MYSQL database
目录
1系统概述 1
1.1 研究背景 1
1.2研究目的 1
1.3系统设计思想 1
2相关技术 2
2.1 MYSQL数据库 2
2.2 B/S结构 3
2.3 Spring Boot框架简介 4
3系统分析 4
3.1可行性分析 4
3.1.1技术可行性 4
3.1.2经济可行性 5
3.1.3操作可行性 5
3.2系统性能分析 5
3.2.1 系统安全性 5
3.2.2 数据完整性 6
3.3系统界面分析 6
3.4系统流程和逻辑 7
4系统概要设计 8
4.1概述 8
4.2系统结构 9
4.3.数据库设计 9
4.3.1数据库实体 9
4.3.2数据库设计表 11
5系统详细实现 15
5.1 管理员模块的实现 15
5.1.1 用户信息管理 15
5.1.2 题库资源管理 16
5.1.3 试题信息管理 16
5.1.4 试卷信息管理 17
5.2 用户模块的实现 17
5.2.1 题库资源 17
5.2.2 用户交流 18
5.2.3 参加考试 19
6系统测试 19
6.1概念和意义 19
6.2特性 20
6.3重要性 20
6.4测试方法 20
6.5 功能测试 21
6.6可用性测试 21
6.7性能测试 22
6.8测试分析 22
6.9测试结果分析 23
结论 23
致谢语 23
参考文献 24
5系统详细实现
5.1 管理员模块的实现
5.1.1 用户信息管理
管理员对用户信息修改删除以及查询操作。具体界面的展示如图5.1所示。
图5.1 用户信息管理界面
5.1.2 题库资源管理
系统管理员可以对题库资源信息进行添加,修改,删除以及查询操作。具体界面如图5.2所示。
图5.2 题库资源信息管理界面
5.1.3 试题信息管理
系统管理员可以对试题信息进行添加,修改,删除以及查询操作。界面如下图所示:
图5.3 试题信息管理界面
5.1.4 试卷信息管理
系统管理员可以对试卷信息进行添加修改删除操作。界面如下图所示:
图5.4 试卷信息管理界面
5.2 用户模块的实现
5.2.1 题库资源
用户可以在前台看到题库资源信息。界面如下图所示:
图5.5 题库资源界面
5.2.2 用户交流
用户可以在用户交流的地方进行留言。界面如下图所示:
图5.6 用户交流信息界面
5.2.3 参加考试
用户可以在试卷信息地方参加考试。界面如下图所示:
图5.7 参加考试界面