In this assignment your PR must only modify the README.md
file.
Please, go to the Wiki in order to get the instructions for this assignment.
Complete the tests of AddressBookServiceTest
to tests if the service meets the HTTP semantics.
Each test in AddressBookServiceTest
is incomplete.
For example, the method serviceIsAlive
tests if:
GET /contacts
returns an empty list, but it must be extended in order to verify that GET /contacts
meets the HTTP GET contract:
- GET request is safe (it does not modify the contents of the address book)
- GET request is idempotent (two consecutive calls return the same).
Solutions must meet primary goals too.
Proposed:
- Replace the current implementation (Jakarta Jersey) by a Spring MVC (Servlet) implementation
- Replace the current implementation (Jakarta Jersey) by a Spring WebFlux (Reactive) implementation
- Support asynchronous requests without using Spring WebFlux
- Use JWT credentials to grant access to requests
- Support of CORS requests
- Support of HTTP/2 requests
- Support of HTTPS requests using self-signed certificate
Note: unless the goal specifies o disallows a specific framework you are free to replace the framework used in the original implementation with a different framework.
Manifest your intention first by a PR updating this README.md
with your goal.
If you desist of your goal, release it by a PR so other fellow can try it.
User name | NIA | CI | Solution | Score |
---|---|---|---|---|
UNIZAR-30246-WebEngineering | 30246 | instructions | ||
Íñigo Aréjula | 785370 | Solution | ||
Diego Marco | 755232 | AddressBookServiceTest | ||
María Peña | 780448 | AddressBookServiceTest | ||
José Marín Díez | 778148 | AddressBookServiceTest | ||
Alejandro Magallón | 779354 | AddressBookServiceTest | ||
Óscar Pueyo | 780378 | solution |