REST APIs implemented using Spring Boot Multi Module Maven Project
- Build the project by running
mvn clean package
inside todo-app-parent module - Once successfully built, run the service by using the following command:
java -jar todo-app-rest/target/todo-app-rest-0.0.1-SNAPSHOT.jar
POST /todo
Accept: application/json
Content-Type: application/json
{
"title" : "Spring Boot",
"description" : "Setup spring boot application",
}
PUT /todo/{Note Id}
Accept: application/json
Content-Type: application/json
{
"id" : "id"
"title" : "Spring Boot",
"description" : "Setup spring boot application",
}
Get /todo
Accept: application/json
Content-Type: application/json
Get /todo/{Note Id}
Accept: application/json
Content-Type: application/json
DELETE /todo/{Note Id}
Accept: application/json
Content-Type: application/json
http://localhost:8081/health
http://localhost:8081/env
http://localhost:8081/info
http://localhost:8081/metrics
http://localhost:8081/logfile
Run the server and browse to localhost:8080/swagger-ui.html