Simple todolist project with SpringBoot and Redis

Go to the project directory and execute the following command in the terminal
docker-compose up
And we are done, the SpringBoot App will be starting on port 8080 and Redis is on 6379
- JDK 17
- Redis
docker run -p 6379:6379 redis
- get list tasks
GET: http://localhost:8080/tasks - get task data
GET: http://localhost:8080/task/{id} - add new/update task
POST: http://localhost:8080/task - delete one task
DELETE: http://localhost:8080/task/{id} - ckecked and unchecked task
PUT: http://localhost:8080/task/checked/{id}
- Git
- Spring Boot 3
- starter-data-redis
- starter-web
- lombok
- PostMan