This is a WebAPI developed in Java using the Spring Boot framework. The API allows performing CRUD (Create, Read, Update, Delete) operations on a list of Person objects.
The application uses DTOs for data transfer and allows extracting information from both the URL and the request body.
The API provides the following functionalities:
- Create (POST): Adds a new
Personobject to the list. - Read (GET): Retrieves data for one or more people.
- Update (PUT): Updates the age of a person.
- Delete (DELETE): Removes a person from the list.