我有一个 Web 服务,它为每个请求返回相同的通用容器以及一些基本信息。例如,请求用户列表会给我以下响应:
{
"error":false,
"message":"Message goes here",
"items":[
{
"id":1,
"name":"Test User 1"
},
{
"id":2,
"name":"Test User 2"
}
]
}
当请求不同的资源时,只有项目列表会有所不同:
{
"error":false,
"message":"Message goes here",
"items":[
{
"id":3,
"artist":"Artist 1",
"year":2001
},
{
"id":4,
"artist":"Artist 2",
"year":1980
}
]
}
在我的客户端中,我想使用 GSON 将响应映射到 java 对象上:
public class ArtistRestResponse {
private boolean error;
private String message = "";
private Artist[] items;
}
但是,为了重构公共字段并阻止我为每个资源创建类,创建一个通用类型的RestResponse<T>
类将是一个合乎逻辑的步骤:
public class RestResponse<T> {
private boolean error;
private String message = "";
private T[] items;
}
问题是无法使用RestResponse<Artist> = new Gson().fromJson(json, RestResponse<Artist>.class);
。有什么方法可以使用这种结构,还是有更好的方法来处理服务器响应?