我正在使用 androidannotations 为 android 学习 spring,并且在将通过 HTTP Get 接收到的 JSON 数据转换为我的模型对象时遇到问题。
我有以下代码:
myRestClient.getRestTemplate().getMessageConverters().add(new GsonHttpMessageConverter());
ArrayList liveMatches = myRestClient.getLiveMatchesForUser((long) user_id);
这个响应实际上只是Match
对象列表的 JSON 表示。
如何将此原始 JSON 响应转换为ArrayList<Match>
对象?
谢谢!