The Hospital Management Staff Web App is a Spring Boot-based web application that allows hospital staff to manage patient records and perform various tasks related to patient admissions and discharges.
- Java
- Hibernate
- Spring Framework
- Spring Boot
- Spring Data JPA
- Postman
- MySQL
- Maven
- Spring Security
- Staff Module
- Patient Module
- Before running the API server, you should update the database config inside the application.properties file.
- Update the port number, username and password as per your local database configuration.
spring.datasource.url=jdbc:mysql://localhost:3306/astrotalk
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
spring.datasource.username=root
spring.datasource.password=root
http://localhost:8080/
- The system includes authentication and validation for Hospital Staff .
- Register as Hospital Staff .
http://localhost:8080/staff
- LogIn as Hospital Staff .
http://localhost:8080/signIn
- Add new Patient.
http://localhost:8080/patient
- View All Patients.
http://localhost:8080/patients
- Update Patient Status To Discharge.
http://localhost:8080/patient/{pid}