这是我现在得到的JSON:
{
"popularPurchases": [
{
"id": 759415,
"price": 1186,
"users": [
"john.doe",
"mary.smith",
"someone.else",
"some.guy",
"not.me"
]
},
{
"id": 655062,
"price": 540,
"users": [
"john.doe",
"jack.john",
"someone.else"
]
},
{
"id": 546179,
"price": 670,
"users": [
"john.doe",
"rogbert.lange",
"smith"
]
}
]
}
我需要摆脱“流行购买”:阵列之前。我试过@JsonUnwrapped,但它没有任何影响。我甚至无法用@XmlElement(name =“somethinglese”)重命名它。
我只需要列表中没有列表名称的内容。