摘要
本系统涉及系统管理员和图书借阅者两类角色,系统管理员负责管理系统用户、角色与权限,确保系统正常运行,并处理图书的入库、下架、借阅与归还等业务。图书借阅者则可以查看图书信息,进行借书、还书操作,并查询已借图书数量和总数量。
在系统设计阶段,通过对系统需求的分析,确定了系统的功能模块划分。系统功能模块图展示了系统的核心功能,包括用户管理、图书管理、借阅管理等。同时,本系统采用了SpringBoot框架进行开发,SpringBoot作为一种全新的框架,旨在简化Spring应用的初始搭建和开发过程,提供了更快捷的入门体验,无需手动管理依赖jar包的版本,实现了自动配置和嵌入式Tomcat等特性,极大地提高了开发效率。
为了实现前后端分离的开发理念,本系统前端采用了Vue框架。Vue是一套构建用户界面的渐进式框架,主张最少,对使用者要求较低,可以逐渐性地使用框架中的功能。通过Vue,系统实现了数据绑定、路由配置、项目编译打包等一系列工作,配合Vue的全家桶系列(包括vue-router、vuex、vue-resource等)和构建工具vue-cli,构成了一个完整的Vue项目。
关键词:系统设计;系统管理员;图书借阅者;SpringBoot框架;自动配置;嵌入式Tomcat;Vue框架;前后端分离
Abstract
The system involves two roles of system administrator and book borrower. The system administrator is responsible for managing the system users, roles and rights, ensuring the normal operation of the system, and handling the warehousing, removal, borrowing and return of books. Book borrowers can check the book information, borrow books, return the operation, and query the number and total number of borrowed books.
In the system design stage, the functional module division of the system is determined through the analysis of the system requirements. The system function module diagram shows the core functions of the system, including user management, library management, borrowing management, etc. At the same time, the system adopts the SpringBoot framework for development, SpringBoot as a new framework, aims to simplify the initial construction and development process of Spring application, provides a faster entry experience, no need to manually manage the jar package version, realize the automatic configuration and embedded Tomcat features, greatly improve the development efficiency.
In order to realize the development concept of front and rear end separation, the Vue framework. Vue is a progressive framework to build a user interface, advocating the least, low user requirements, and can gradually use the functions in the framework. Through Vue, the system realizes a series of work such as data binding, routing configuration, project compilation and packaging, etc., together with Vue's family bucket series (including Vue-router, vuex, vue-resource, etc.) and building tool Vue-cli, forming a complete Vue project.
Key words: system design; system administrator; book borrower; SpringBoot framework; automatic configuration; embedded Tomcat; Vue frame; front and rear end separation
目录
摘要
Abstract
第一章 绪论
1.1 开发背景
1.2 开发意义
第二章 系统分析
2.1 系统的需求分析
2.2 系统开发设计思想
2.3系统开发步骤
2.4 系统的主要技术
2.4.1 B/S系统的三层体系结构
2.4.2springboot简介
2.4.3springboot优点
2.4.4vue
2.4.5vue优点
2.4.6redis简介
2.4.7redis特点
2.5 系统的运行环境和开发平台
2.5.1 硬件设备及操作系统
2.5.2 系统开发工具
2.5.3 开发工具简介
第三章 系统设计
3.1系统流程
3.2 系统功能模块的划分
3.2.1用户管理
3.2.3 图书管理
3.2.4读者管理
3.2.5 系统管理
3.3数据库设计
3.3.1数据库需求分析
3.3.2数据库的逻辑设计
第四章 系统实现
4.1主要界面实现
4.1.1用户登陆
4.1.2 首页
4.1.3 图书管理-图书信息管理
4.1.4图书管理-图书类型管理
4.1.5图书管理-借阅信息管理
4.1.6读者管理-读者信息管理
4.1.7权限管理-用户管理
4.1.6权限管理-修改密码管理
4.2主要功能程序的实现
4.2.1 数据库连接的建立
4.2.2图书添加
4.2.3图书录入相关页面
第五章 系统的测试
5.1 软件测试的目的和原则
第六章 总结
参考文献
致谢


















