我有一个带有请求映射的 spring 应用程序,它返回 json 中的帐户列表。Account 类有一个 Date 属性。此属性在 json 输出中作为 unix 时间戳返回。
有没有办法将日期格式更改为预定义格式,而不是将其作为 unix 时间戳返回?
@RequestMapping(value = "/userAccounts.json", method = RequestMethod.GET)
public @ResponseBody ArrayList<Account> userAccounts() {
ArrayList<Account> accounts = accountService.getAllUserAccounts(user);
return accounts;
}