我有一個標準的Spring數據JPA和Spring數據Rest設置,它可以正確地將關聯返回爲正確資源的鏈接。在Spring Data Rest響應中選擇性地擴展關聯
{
"id": 1,
"version": 2,
"date": "2011-11-22",
"description": "XPTO",
"_links": {
"self": {
"href": "http://localhost:8000/api/domain/1"
},
"otherDomain": {
"href": "http://localhost:8000/api/domain/1/otherDomain"
}
}
}
然而,在一些請求我想有關聯的「otherDomain」擴展(所以客戶端不必做N + 1個請求得到完整的數據)。
是否可以配置Spring Data Rest來以這種方式處理響應?
[spring-data-rest可能的重複,你可以提供實體的全部細節而不是(或與)鏈接](http://stackoverflow.com/questions/21975618/spring-data-rest-can-you - 提供完整的實體細節 - 而不是 - 或 - 與 - li) – bluish