我正在使用Spring MVC
并返回JSON
作为响应。我想创建一个通用JSON
响应,我可以在其中输入任何类型并希望响应看起来像这样
{
status : "success",
data : {
"accounts" : [
{ "id" : 1, "title" : "saving", "sortcode" : "121212" },
{ "id" : 2, "title" : "current", "sortcode" : "445566" },
]
}
}
所以我创建了一个Response<T>
对象
public class Response<T> {
private String status;
private String message;
T data;
...
...
}
- 这是这样做的正确方法,还是有更好的方法?
- 您如何在
Spring
控制器中使用此 Response 对象来返回一个空的响应对象和/或填充的响应对象。
在此先感谢 GM
更新:
为了获得与JSON
所描述的类似的输出,即使用“accounts”键输入JSON
,我必须Response<Map<String, List<Account>>>
在控制器中使用以下内容:
@RequestMapping(value = {"/accounts"}, method = RequestMethod.POST, produces = "application/json", headers = "Accept=application/json")
@ResponseBody
public Response<Map<String, List<Account>>> findAccounts(@RequestBody AccountsSearchRequest request) {
//
// empty accounts list
//
List<Account> accountsList = new ArrayList<Account>();
//
// response will hold a MAP with key="accounts" value="List<Account>
//
Response<Map<String, List<Account>>> response = ResponseUtil.createResponseWithData("accounts", accountsList);
try {
accountsList = searchService.findAccounts(request);
response = ResponseUtil.createResponseWithData("accounts", accountsList);
response.setStatus("success");
response.setMessage("Number of accounts ("+accounts.size()+")");
} catch (Exception e) {
response.setStatus("error");
response.setMessage("System error " + e.getMessage());
response.setData(null);
}
return response;
}
这是这样做的正确方法吗?即为了获得JSON
输出中的“帐户”键?