Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yuziquan/studentsmanagementsystem
A small Demo of a Web application built by Spring Boot to implement "CRUD operations on student information".
https://github.com/yuziquan/studentsmanagementsystem
spring-boot webapp
Last synced: 6 days ago
JSON representation
A small Demo of a Web application built by Spring Boot to implement "CRUD operations on student information".
- Host: GitHub
- URL: https://github.com/yuziquan/studentsmanagementsystem
- Owner: Yuziquan
- License: mit
- Created: 2018-08-01T16:00:25.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-10-20T03:03:47.000Z (over 6 years ago)
- Last Synced: 2024-12-13T15:52:19.391Z (2 months ago)
- Topics: spring-boot, webapp
- Language: Java
- Homepage:
- Size: 180 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## StudentsManagementSystem
[![StudentsManagementSystem](https://img.shields.io/badge/StudentsManagementSystem-v1.0.0-brightgreen.svg)](https://github.com/Yuziquan/StudentsManagementSystem)
[![license](https://img.shields.io/packagist/l/doctrine/orm.svg)](
https://github.com/Yuziquan/StudentsManagementSystem/blob/master/LICENSE)### 一、Demo功能
> 通过Spring Boot搭建“实现对学生信息CRUD操作”的简单Web应用程序。其中学生信息包括:学号、姓名、性别、年龄,也实现了利用AOP处理请求、全局统一异常处理、单元测试等。
***
### 二、该Demo的项目结构![1](https://github.com/Yuziquan/StudentsManagementSystem/blob/master/Screenshots/project_structure.png)
***
### 三、该Demo的RESTful API
| 请求类型 | 请求URL | 功能 |
| ------ | ------------ | ------------- |
| GET | /students | 获取所有学生信息的一个列表 |
| POST | /create | 新增一个学生的信息 |
| GET | /student/num | 通过学号查询一个学生的信息 |
| PUT | /student/num | 通过学号更新一个学生的信息 |
| DELETE | /student/num | 通过学号删除一个学生的信息 |