My Spring Boot
1.4 application has this POST
HTTP Method to create a resource. As a requirement, it should spit a location header specifying the URL of the newly created resource: RFC 9110 HTTP Semantics - Method Definitions. I am just wondering if there is any good way to do it than manually constructing the URL and adding it to the response.
Any helps/clues are deeply appreciated
ControllerLinkBuilder
from Spring Data REST, but it has its shortcomings. – Smoothbore