An open API service indexing awesome lists of open source software.

https://github.com/subhashchandra-birajdar/inmemorycrud-springbootapplication

In-Memory CRUD Application is a Spring Boot project designed to demonstrate basic CRUD operations using an in-memory database. This project provides a lightweight and fast way to perform CRUD operations without the need for a persistent database, making it ideal for learning and testing purposes.
https://github.com/subhashchandra-birajdar/inmemorycrud-springbootapplication

collections crud-operation inmemory-db java-8 restful-api spring-boot spring-mvc

Last synced: about 2 months ago
JSON representation

In-Memory CRUD Application is a Spring Boot project designed to demonstrate basic CRUD operations using an in-memory database. This project provides a lightweight and fast way to perform CRUD operations without the need for a persistent database, making it ideal for learning and testing purposes.

Awesome Lists containing this project

README

          

# In Memory Database with Spring Boot 3 and java 17
## Dependencies are required for this project
* spring web
* lombok
## create Programming language API :
- http://localhost:8080/api/programmingLanguages/create
![create - save](https://github.com/user-attachments/assets/b1eda1e8-dd06-4d95-b458-391970ce5c24)
## get by id api programming language
- http://localhost:8080/api/programmingLanguages/getById/{id}
- http://localhost:8080/api/programmingLanguages/getById1
![getById](https://github.com/user-attachments/assets/68235f24-4877-410d-a66b-e2cd2c654c4c)
## get all programming language
- http://localhost:8080/api/programmingLanguages/getAll
![getAll - read ](https://github.com/user-attachments/assets/9b8953ea-aa9a-447e-b7ea-b39f6aac624e)
## update programming language
- http://localhost:8080/api/programmingLanguages/update
![update](https://github.com/user-attachments/assets/9c4e9159-9555-43c0-a14e-08e022ab787b)
## delete programming language
- http://localhost:8080/api/programmingLanguages/delete1
![delete](https://github.com/user-attachments/assets/89fbd409-cfbe-450b-b067-61086e237ca6)

## Keep coding, keep documenting, and most importantly, keep growing. Until next time, happy coding!