Challenge: Book Review System
Explore how to extend a library management system by implementing a book review feature using Spring Data Couchbase. Learn to create User and BookReview classes as Couchbase documents, build repositories with query methods, and perform CRUD operations to manage reviews and ratings in a reactive environment.
We'll cover the following...
We'll cover the following...
Implement a book review system
Extend the existing library management system to include a book review system. We should allow users to rate and review the book.
Tasks
In this challenge, complete the following tasks:
-
Create the
Userclass in thecom.smartdiscover.modelpackage to store the user in Couchbase. ...