Giter Site home page Giter Site logo

jsnjgulouyq001 / library_manager_system Goto Github PK

View Code? Open in Web Editor NEW

This project forked from zhangbw409/library_manager_system

0.0 0.0 0.0 4.35 MB

springboot 图书管理系统 , 界面简单大方 ,上手较简单,考研中,项目不维护了

License: GNU General Public License v3.0

JavaScript 6.12% Java 61.58% CSS 1.14% HTML 27.62% TSQL 3.54%

library_manager_system's Introduction

springboot-libraryManageSystem

图书管理系统 ,使用当前最为流行的 SpringBoot 框架,可作为springboot的入门项目练习使用,也可稍加改进做一个毕业设计项目。

一、相关技术栈

  1. 前端: Thymeleaf、Layui、Ajax、JQuery
  2. 后端 : springboot , mybatis
  3. 开发环境: IDEA 、SpringBoot 2.3、Maven
  4. 数据库:MySQL 5.7

默认用户

当您运行初始脚本后,默认存在以下用户,便于测试:

登录名 密码 用户角色
user1 123456 普通用户
user2 123456 普通用户
admin 123456 管理员

二、主要功能

架构图

三、数据库表结构设计

db_table

四 、界面设计

①、登录界面

login

②、管理员界面

管理员首页

admin_index

添加书籍

add_book

新建书籍类别

book_category

查询书籍

searchBook

用户管理

user_manager

addUser

借阅信息

allRecord

管理员信息修改

adminInfo

③、用户运行界面

用户登录首页

user_index

用户借书记录

借书记录

借阅书籍

五、项目部署启动

①、部署环境准备

  • jdk1.8
  • mysql 5.7+
  • maven

②、具体部署

数据库配置【必须】

  1. 本地安装 MySQL 环境,所需版本为 5.7+

  2. 创建数据库名为 library-manager-system,数据库编码采用 utf8mb4,排序规则为 utf8mb4_general_ci

    CREATE DATABASE IF NOT EXISTS library-manager-system default charset utf8mb4 COLLATE utf8mb4_general_ci;
    
  3. 导入项目中 /src/main/resources/db/library-manager-system.sqlexpress库。

    使用 source 命令 【也可通过图形化软件进行导入(如Navicat)】

    use library-manager-system; # 选择数据库
    source /your/path/library-manager-system.sql; # Source 导入
  4. 编辑 application-dev.yaml 文件,修改数据库连接信息。

    datasource:
        driver-class-name: com.mysql.cj.jdbc.Driver # MySQL驱动,无需修改
        # 数据库连接URL,以下为连接本地的 library-manager-system 库的 url 示例
        url: jdbc:mysql://localhost:3306/library-manager-system?useUnicode=true&serverTimezone=UTC&characterEncoding=utf-8&useSSL=false
        username: root # 数据库连接名
        password: 123456 # 数据库连接密码

library_manager_system's People

Contributors

zhangbw409 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.