Student Library management system is a backend application built using Java, Spring Boot and MySQL
Address: http://localhost:9998/student/add
JSON: {
"name": "Nitish",
"age" : 23,
"email": "Email@gmail.com",
"mobNo": "9999999999",
"country":"India"
}
Address: http://localhost:9998/student/findStudentByEmail?Email={EnterYourEmailAddress}
Address: http://localhost:9998/Author/add
JSON: {
"name":"Chetan Bhagat",
"age" : 38,
"country": "India",
"authorRating":8.9
}
Address: http://localhost:9998/book/add
JSON: {
"name": "Two States",
"pages": 192,
"genre":"Romance",
"authorId":1
}