Spring HATEOAS embedded resource support

前端 未结 8 891
别那么骄傲
别那么骄傲 2020-12-07 14:12

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

8条回答
  •  鱼传尺愫
    2020-12-07 14:40

    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"
        }
    }
    

提交回复
热议问题