Straight Forward implementation of Rest Api using Spring boot JPA
This Api is designed based on a Patient Database scenario.
- install STS(Spring Tool Suite)
- install xampp/any other to run mysql
- create db named "restdb" and password should be null and user mus "root"
Get All Data http://localhost:8080/patients
Get specific patient by id http://localhost:8080/patient/1
Get specific patient by email http://localhost:8080/patient_email/[email protected]
Add Patient information ( send body data) http://localhost:8080/patient/add
Update Patient information ( send body data with id) http://localhost:8080/patient/update