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.
- Host: GitHub
- URL: https://github.com/subhashchandra-birajdar/inmemorycrud-springbootapplication
- Owner: Subhashchandra-Birajdar
- Created: 2024-08-20T13:00:07.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-08-20T13:56:30.000Z (almost 2 years ago)
- Last Synced: 2025-06-24T09:48:55.093Z (12 months ago)
- Topics: collections, crud-operation, inmemory-db, java-8, restful-api, spring-boot, spring-mvc
- Language: Java
- Homepage:
- Size: 14.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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

## get by id api programming language
- http://localhost:8080/api/programmingLanguages/getById/{id}
- http://localhost:8080/api/programmingLanguages/getById1

## get all programming language
- http://localhost:8080/api/programmingLanguages/getAll

## update programming language
- http://localhost:8080/api/programmingLanguages/update

## delete programming language
- http://localhost:8080/api/programmingLanguages/delete1

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