Spring Project

Project: Catalog Service

  1. Implement a Spring Boot application with a catalog service that provides the following methods to manage books:
    • addBook() - adds a book to the catalog
    • findBook() - finds a book by ISBN number
    • searchBooks() - searches for books by keyword
    • updateBook() - updates a book in the catalog
  2. Implement an integration test to verify the functionality of the service.

Catalog Service API