STUDENT RECORDS MANAGER APPLICATION
A student and a course are entities, while an enrollment is a relationship between a student and a course.
POST /createresource GET /readresources PUT /updateresource DELETE /deleteresource
Sample post request(to http://localhost:8080/createresource):-
{ "firstName":"Rajat", "lastName": "Kansal", "email": "rajat123@gmail.com", "courses":[ { "name":"C++", "description":"Programming Language", "email":"AM101" }, { "name":"Linux", "description":"Operating System", "email":"AM105" } ] }