Project: Online Book Store API
Objective: Implement a RESTful API for an online book store using Java and Spring Boot. The API should allow users to perform CRUD (Create, Read, Update, Delete) operations on books and authors.
Requirements:
- Create a new Spring Boot project using Spring Initializr. Include the following dependencies: Web, JPA, and H2.
- Set up the project with the following structure:
modelpackage: containing the domain model classes (e.g.,Book,Author)repositorypackage: containing the repository interfaces extendingJpaRepository