Search⌘ K
AI Features

Challenge: Book Loan System

Explore how to extend a library management system by adding a book loan feature using Spring Data JPA. Learn to define entities, manage repository queries, and implement auditing to track loan activities effectively.

We'll cover the following...

Implement a book loan system

Extend the existing library management system to include a loan system. We should be able to loan a book that is currently available and return the book.

Tasks

In this challenge, complete the following tasks:

  1. Add the available Boolean ...