我有两个具有 OneToMany ManyToOne 关系的 JPA 实体(患者和诊所)。我想以 JSON 格式返回数据(目前使用org.apache.cxf.jaxrs.provider.JSONProvider
)。以下是患者信息及其相关诊所。但是,它会返回诊所的所有字段。我怎么能只返回诊所的主键/ID(@Id)?
{
"Patient": {
"age": 0,
"clinic": {
"address": "long address here",
"otherKeys": "other values",
"id": 5
},
"ic": "010101",
"id": 12,
"name": "Patient 01"
}
}