Ho un set di dati Spring standard JPA e Spring data Rest che, correttamente, restituisce associazioni come collegamenti alle risorse corrette.Espansione selettiva delle associazioni in Spring Data Risposta del ripetitore
{
"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"
}
}
}
Tuttavia, in alcuni richieste Vorrei avere l'associazione al "otherDomain" espanso (in modo che il cliente non ha a che fare N + 1 richieste per ottenere i dati completi).
È possibile configurare Spring Data Rest per gestire la risposta in questo modo?
possibile duplicato di [spring-data-rest, puoi fornire tutti i dettagli dell'entità anziché (o con) link] (http://stackoverflow.com/questions/21975618/spring-data-rest-can-you -provide-full-details-of-entity-instead-of-or-with-li) – bluish