我有一个方法
@GET
@Produces("application/json")
public List<Conversation> getMyConversations() { /* ... */ }
json输出类似于
[{"conversation" : { ... }}, {"conversation" : { ... }}]
但是,我想输出这个
"conversations" : [{"conversation" : { ... }}, {"conversation" : { ... }}]
有没有办法做到这一点?