Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vijay-nits/firstspringcurd
https://github.com/vijay-nits/firstspringcurd
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/vijay-nits/firstspringcurd
- Owner: VIjay-Nits
- Created: 2024-03-10T09:09:13.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-03-18T19:55:03.000Z (10 months ago)
- Last Synced: 2024-03-18T21:22:04.662Z (10 months ago)
- Language: Java
- Size: 71.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
This project aims to provide a hands-on learning experience with Spring Boot by implementing CRUD (Create, Read, Update, Delete) operations using a MySQL database. Through this project, developers will gain practical knowledge of building RESTful APIs to perform basic database operations using HTTP requests.
Skills - Java, Spring Boot, Spring DAO, MySQL, MavenHTTP Method request from Postman -
1. Get Request - "/employee" - will show the all employee deatils
![Screenshot (89)](https://github.com/VIjay-Nits/firstSpringCURD/assets/50875814/acc92f9e-9ecc-4823-b93f-54fdb7a4954d)2. POST - "/employee" - will create new entry in employee table and return the details of employee
![Screenshot (97)](https://github.com/VIjay-Nits/firstSpringCURD/assets/50875814/a7b90f32-7555-485f-936c-fd5c4bf3463d)3. PUT - "/employee" - update the existing employee in the db
![Screenshot (98)](https://github.com/VIjay-Nits/firstSpringCURD/assets/50875814/380950e3-8637-43a7-90f5-b25edc73e8b2)