https://github.com/chayan-1906/spring-boot-todo-mongodb
B2 Tech: https://www.youtube.com/playlist?list=PLA7e3zmT6XQUjrwAoOHvNu80Axuf-3jft
https://github.com/chayan-1906/spring-boot-todo-mongodb
Last synced: 8 months ago
JSON representation
B2 Tech: https://www.youtube.com/playlist?list=PLA7e3zmT6XQUjrwAoOHvNu80Axuf-3jft
- Host: GitHub
- URL: https://github.com/chayan-1906/spring-boot-todo-mongodb
- Owner: chayan-1906
- Created: 2023-03-29T17:01:27.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2023-04-09T05:25:41.000Z (over 2 years ago)
- Last Synced: 2025-01-09T13:47:51.498Z (9 months ago)
- Language: Java
- Homepage:
- Size: 71.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Spring Boot Mongo DB Crud
Demo TODO application built on SpringBoot and MongoDB
[](https://www.youtube.com/playlist?list=PLA7e3zmT6XQUjrwAoOHvNu80Axuf-3jft)## APIs
The server runs on Tomcat, on
Route | METHOD | Description
---------------------------- | ------ | -------------
/todos | GET | Get all TODOs
/todos/{todoId} | GET | Get TODO by id
/todos | POST | Add/Create a new TODO
/todos/{todoId} | PUT | Update TODO
/todos/{todoId} | DELETE | Delete TODO## Dependencies
* [Spring Boot Starter Data MongoDB](https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-data-mongodb)
* [Spring Boot Starter Web](https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-web)
* [Spring Boot Devtools](https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-devtools)
* [Lombok](https://mvnrepository.com/artifact/org.projectlombok/lombok)
* [Spring Boot Starter Test](https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-test)
* [Spring Boot Starter Validation](https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-validation)