Challenge: Reservation Queue
Challenge yourself to implement a reservation queue using Spring Data Redis.
We'll cover the following...
Implement a reservation queue
Extend the existing library management system to include a reservation queue for popular books. We should allow users to join a reservation queue to be notified when the book becomes available.
Tasks
In this challenge, complete the following tasks:
-
Add the
Boolean
available
property to theBook
POJO class. -
Create the
User
class in thecom.smartdiscover.model
package to store ...