Skip to content

Latest commit

 

History

History
37 lines (34 loc) · 1.34 KB

File metadata and controls

37 lines (34 loc) · 1.34 KB

CovidPatientSystem-SpringBootHibernateJPA

This project allows admin

  • register new Covid patient information to the system
  • delete the patient information from the system
  • patient information is stored in a PostgreSQL database via Hibernate

Structure

--- src
    |---main
    |     |---java
    |     |       |---Application.java
    |     |       |---com.covid.info
    |     |                 |---controller
    |     |                 |        |---HomeController
    |     |                 |        |---PersonController
    |     |                 |---domain
    |     |                 |        |---Person
    |     |                 |---repository
    |     |                 |        |---PersonRepository
    |     |                 |---service
    |     |                          |---PersonService
    |     |                          |---PersonServiceImplementation
    |     |---resources
    |          |---templates
    |                      |---addUser.html
    |                      |---home.html
    |                      |---patients.html
    |                      |---update.html
    |---test
         |---java
               |---PersonServiceUnitTest             

How it works like - Demo

covid-patient-system