-
Notifications
You must be signed in to change notification settings - Fork 470
Open
Description
The Stateless.co HAL documentation and IETF draft spec both use relative URLs (with absolute paths) in all their examples, e.g.
{ "_links": { "self": { "href": "/orders/523" } } }
However, the links generated by ControllerLinkBuilder and EntityLink are all absolute:
{ "_links": { "self": { "href": "http://localhost:8080/orders/523" } } }
Is there any way to make them generate relative links instead?
destan, odin-delrio, xavierjuanscmspain, AntonGitName, eungjun-yi and 21 more