Skip to content

Lab3-restful-ws (deadline 2021-11-19)

Notifications You must be signed in to change notification settings

alecron/lab3-restful-ws

Repository files navigation

Web Engineering 2021-2022 / RESTful Web services

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.

Primary goal

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).

Secondary goals (:gift:)

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 Build Status instructions
Diego Marco 755232 Build Status AddressBookServiceTest
María Peña 780448 Build Status AddressBookServiceTest
José Marín Díez 778148 Build Status AddressBookServiceTest
Alejandro Magallón 779354 Build Status AddressBookServiceTest

About

Lab3-restful-ws (deadline 2021-11-19)

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages