This implementation is using H2 SQL DB for demo, but it can be change for any other SQL engine. Because it is using ORM.
- improve unittest codes
- write tutorial documents for beginners in Korean and English
- improve codes with Vert.x feature and Java8
# maven build first
docker build -t corona10/vert.x-todo .
docker run -p 3000:3000 -i -t corona10/vert.x-todo
- GET / -> get all to-do list
- GET /:entryId -> get entryId's to-do
- POST / -> register to-do
- DELETE / -> delete all to-do list
- DELETE /:entryId -> delete entryId's to-do
- PATCH /:entryId -> update entryId's to-do
