About the university management project in this we basically try to understand the
we have 2 entity classes
university id, department, list of student
student entity details like id,name,age,marks.
IStudentDao.java IUniversityDao.java
IUniversityService.java UniversityServiceImpl.java
StudentController.ajava
this is my main request mapping url for the application.
http://localhost:9090/university/save above url for store the records in database .
http://localhost:9090/university/get by this url we will all database list of records.
http://localhost:9090/university/get/mech by this url we will only machanical student details.
http://localhost:9090/university/marks/physics in above example url we will get physics according to marks.
http://localhost:9090/university/bonus_marks
if any any department student is performing well then we will add 10 extra marksto them.
http://localhost:9090/university//low_performance low performing student list according to there department.
http://localhost:9090/university/delete this is url to remove extremely poor performer in university.
http://localhost:9090/university/sort_by_marks/{dept} in the particular department we can sort the student to there obtaining marks.