一個人如何配置Spring數據休息連載相關實體直接?彈簧安置數據序列,一個協會評爲相關實體
我希望它看起來像這樣:請注意,「所有者」鏈接是「帳戶」實體。
{
"name" : "customer",
"_links" : {
"self" : {
"href" : "http://localhost:8081/api/v1/servers/1005"
},
"owner" : {
"href" : "http://localhost:8081/api/v1/account/100"
}
}
}
當前(默認)具有間接序列化的相關實體(aka,association)。
我不希望它看起來像這樣:「所有者」鏈接是通過自服務器實體。
{
"name" : "customer",
"_links" : {
"self" : {
"href" : "http://localhost:8081/api/v1/servers/1005"
},
"owner" : {
"href" : "http://localhost:8081/api/v1/servers/1005/owner"
}
}
}
我已檢查文檔,找不到要去的「直接」路線任何提及。
你怎麼生成的鏈接,你是什麼意思與*默認*? – linqu
使用Spring Boot和@RepositoryRestController註釋。 – sofend