Question: Develop the backend for a healthcare mangement system application using the Spring framework .(Spring Boot Hands-on ) Healthcare Service -----Java Full Stack Developer - Spring

Develop the backend for a healthcare mangement system application using the Spring framework.(Spring Boot Hands-on

)

Healthcare Service -----Java Full Stack Developer - Spring Boot


 I was not allowing all the file to upload here in question box hence uploaded in google drive - link provided in comments box..1. Healthcare Service - Spring Boot You have to create an API for a healthcare service. The following are the details of the API endpoints. register: (HTTP METHOD-POST) This endpoint should register the application user. On successful registration, the response should be {message=""Registration successful""} and on failure, the response should be {message="Password or username policy failed"} signin: (HTTP METHOD-POST) Users should be able to sign in through this endpoint by providing their email and password. On successful login, the response should be { message = "Authentication successful!", token - JWTtoken, id=user.ld}; and on failure, the response should be {message="Username or Password is incorrect."} "viewprofile/{userid}": (HTTP METHOD-GET) This API should return the details of all the application users. "editprofile/{userId}": (HTTP METHOD-GET) This API should allow you to edit the details of an application user. "patients/register": (HTTP METHOD-POST) An application user should register the patient through 

1. Healthcare Service - Spring Boot You have to create an API for a healthcare service. The following are the details of the API endpoints. register: (HTTP METHOD-POST) This endpoint should register the application user. On successful registration, the response should be {message=""Registration successful""} and on failure, the response should be {message="Password or username policy failed"} signin: (HTTP METHOD-POST) Users should be able to sign in through this endpoint by providing their email and password. On successful login, the response should be { message = "Authentication successful!", token - JWTtoken, id=user.ld}; and on failure, the response should be {message="Username or Password is incorrect."} "viewprofile/{userid}": (HTTP METHOD-GET) This API should return the details of all the application users. "editprofile/{userId}": (HTTP METHOD-GET) This API should allow you to edit the details of an application user. "patients/register": (HTTP METHOD-POST) An application user should register the patient through this API. On succcessful registration, the response should be (message="Registration successful") and on failure, {message="Registration failure"} "patients/list/": (HTTP METHOD-GET) Should return a list of all the patients. "patients/view/{id}": (HTTP METHOD-GET) Should return details of the single user of that particular ID

Step by Step Solution

3.45 Rating (155 Votes )

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock

Project Setup Create a new Spring Boot project using your preferred IDE or Spring Initializr Model Classes Define model classes for users patients and ... View full answer

blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!