https://github.com/souravsuvarna/crud_application
This is a simple CRUD (Create, Read, Update, Delete) application built using Spring Boot. It allows you to manage a collection of books.
https://github.com/souravsuvarna/crud_application
java rest-api spring-boot
Last synced: 3 months ago
JSON representation
This is a simple CRUD (Create, Read, Update, Delete) application built using Spring Boot. It allows you to manage a collection of books.
- Host: GitHub
- URL: https://github.com/souravsuvarna/crud_application
- Owner: souravsuvarna
- Created: 2023-09-06T07:24:09.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2023-09-06T08:08:36.000Z (almost 3 years ago)
- Last Synced: 2025-05-29T20:23:50.250Z (about 1 year ago)
- Topics: java, rest-api, spring-boot
- Language: Java
- Homepage:
- Size: 67.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# CRUD Application
This is a simple CRUD (Create, Read, Update, Delete) application built using Spring Boot. It allows you to manage a collection of books.
## Prerequisites
Java Development Kit (JDK) 8 or higher.
Spring Boot
Maven or Gradle (for building and running the application)
Integrated Development Environment (IDE) like IntelliJ IDEA or Eclipse
## Installation
Clone this repository to your local machine:
```bash
git clone https://github.com/souravsuvarna/CRUD_Application.git
```
Open the project in your preferred IDE.
Build and run the application.
## Usage
### API Endpoints
The application provides the following RESTful API endpoints:
``` bash
GET /getAllBooks: Retrieve a list of all books.
GET /getBookById/{id}: Retrieve a book by its ID.
POST /addBook: Add a new book.
POST /updateBookById/{id}: Update a book by its ID.
DELETE /deleteBookById/{id}: Delete a book by its ID.
```