I want to use the HAL format for my REST API to include embedded resources. I\'m using Spring HATEOAS for my APIs and Spring HATEOAS seems to support embedded resources; how
Add this dependency in your pom. Check this link: https://www.baeldung.com/spring-rest-hal
org.springframework.data spring-data-rest-hal-browser
It will change your response like this.
"_links": { "next": { "href": "http://localhost:8082/mbill/user/listUser?extra=ok&page=11" } }