Germán Amézquita Becerra 2024 Septiembre
This project returns a list of animals with the following endpoint:
animal/all
Returns list with all animals.animal/range/?from={number}&to={number}Returns the animals located in the file between those positions.
Example 1:
http://localhost:8081/animal/range?from=1&to=40
http://localhost:8081/animal/range?from=1&to=409
Example 2:
http://localhost:8081/animal/all
mvn clean install
mvn clean package
These features are for practice and preparation for evaluation. Please create the following endpoint:
-
List of animals that belong to a category,
animal/category/{categoty} -
List of animals whose names have less than n letters
animal/name-length/{numberOfLetters}
Example 1:
http://localhost:8081/animal/category/Mamíferoshttp://localhost:8081/animal/category/Lost
Example 2:
http://localhost:8081/animal/name-length/4