Spring Boot RESTFul

The main idea behind creating a RESTful application is that you will create logical resources (GET, POST, UPDATE and DELETE) consumed by clients usign HTTP request. This resources should be nouns no verbs. In this example we will create a RESTful application using a person resource. So we can have: GET /persons - Retrieves a list of persons GET /persons/1234 - Retrieves a specific person POST /persons - Creates a new person PUT /persons/1234 - Updates #1234 person DELETE /persons/1234 - Deletes #1234 person NOTE: If you need to know what tools you need to have installed in your computer in order to create a Spring Boot basic project, please refer my previous post: Spring Boot [Read More]