如何将查出的日期Data类型以Json格式输出到前端
2021-07-09 12:04
标签:tom orm 使用 final 时间 tee tor bsp omd 方法一 在返回的实体的属性中加上注解 // 创建时间 方法二 在Controller中注解一个@InitBinder,使用@ResponseBody时会将实体中的属性为Data类型的转换成JSON格式的日期 private static final SimpleDateFormat DATEFORMAT = new SimpleDateFormat("yyyy-MM-dd"); @InitBinder 如何将查出的日期Data类型以Json格式输出到前端 标签:tom orm 使用 final 时间 tee tor bsp omd 原文地址:http://www.cnblogs.com/OnlyCT/p/7093671.html
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date createDate;
protected void initBinder(WebDataBinder binder) {
binder.registerCustomEditor(Date.class, new CustomDateEditor(DATEFORMAT, true));
}
上一篇:ajax与Servlet
下一篇:如何对网站关键词进行合理布局?
文章标题:如何将查出的日期Data类型以Json格式输出到前端
文章链接:http://soscw.com/index.php/essay/102768.html