The Common is a Spring Boot application that offers a minimum set of functionalities shared by all subprojects.
- Short URL creation service:
POST /
creates a shortened URL from a URL in the request parameterurl
. - Redirection service:
GET /{id}
redirects the request to a URL associated with the parameterid
. - Database service: Persistence and retrieval of
ShortURL
andClick
objects.