https://github.com/rhitajyotim411/student_management
A simple REST API built using Java Spring Framework to get, save, and delete student records.
https://github.com/rhitajyotim411/student_management
java rest-api spring-boot springframework
Last synced: about 1 month ago
JSON representation
A simple REST API built using Java Spring Framework to get, save, and delete student records.
- Host: GitHub
- URL: https://github.com/rhitajyotim411/student_management
- Owner: rhitajyotim411
- Created: 2025-02-17T18:58:22.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-03-27T12:56:11.000Z (about 1 year ago)
- Last Synced: 2025-03-27T13:42:12.858Z (about 1 year ago)
- Topics: java, rest-api, spring-boot, springframework
- Language: Java
- Homepage:
- Size: 17.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Student Management REST API
This is a simple REST API to perform CRUD operations on student records. The project highlights the basics of building a REST API using the Spring Framework in Java and uses PostgreSQL as the database.
## Features
- Retrieve student details
- Save new student records
- Update student details
- Delete existing student records
## Technologies Used
- **Java** (Spring Boot)
- **Spring Framework** (Spring Web, Spring Data JPA, Lombok)
- **PostgreSQL** (Database)
- **Maven** (Build tool)
## API Endpoints
| Method | Endpoint | Description |
| ------ | -------------------- | ------------------------ |
| GET | `/api/students` | Retrieve all students |
| GET | `/api/students/{id}` | Retrieve a student by ID |
| POST | `/api/students` | Save a new student |
| PUT | `/api/students` | Update a student details |
| DELETE | `/api/students/{id}` | Delete a student by ID |