有人可以告诉我如何在我的“RequestResult.java”中使用 RoboSpice 进行动态映射吗?
我的 JSON 看起来像这样:
"result": [
{
"attributeX1" "...",
"type": "x",
"attributeXi" "..."
},
{
"attributeX1": "...",
"type": "x",
"attributeXi": "..."
}
]
或者
"result": [
{
"attributeY1" "...",
"type": "y",
"attributeYi" "..."
},
{
"attributeY1" "...",
"type": "y",
"attributeYi" "..."
}
]
根据请求,类型是 x 或 y。所以如果 "type": "x" 我有必要使用模型 "x.java" 如果 "type" : "y" 需要使用模型 "y.java"