Search⌘ K
AI Features

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...

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:

  1. Create the User class in the com.smartdiscover.model package to store the user in Couchbase. ...