A simple CRUD with spring boot using redis as repository.
- Java 8+
- Docker
mvn install
in docker-images:
docker-compose up --build
mvn spring-boot:run
- [POST] in "/" to create with body:
{
"id",
"document",
"description"
}
- [GET] in "/{ID}" to get by id
- [PUT] in "/" to update with body:
{
"id",
"document",
"description"
}
- [DELETE] in "/{ID}" to delete by id