A HealthCare WebApp created using JSP while following OOPs principles. The WebApp can be used by Healthcare specialists as well as patients depending on the user role.
Having separate Views for each webpage to follow the MVC architecture. To run this one needs to have Apache Tomcat servers running locally.
Running the following commands dir /s /b * .java > sources.txt && javac -cp WEB-INF\lib* -d WEB-INF\classes @sources.txt
jar -cvf myapp.war *
copy myapp.war C:\xampp\tomcat\webapps
This should establish the connection of the webapp with the localhost and it should start running The landing page
Patient Dashboard
Doctor Dashboard
Admin Dashboard
While the front end is coded using JSP, the Model connects the application the DataBase in MySQL. The following tables are created beforehand.