码迷,mamicode.com
首页 > Web开发 > 详细

如何将查出的日期Data类型以Json格式输出到前端

时间:2017-06-29 12:37:11      阅读:187      评论:0      收藏:0      [点我收藏+]

标签:tom   orm   使用   final   时间   tee   tor   bsp   omd   

方法一

  在返回的实体的属性中加上注解

 // 创建时间
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date createDate;

方法二

  在Controller中注解一个@InitBinder,使用@ResponseBody时会将实体中的属性为Data类型的转换成JSON格式的日期

  private static final SimpleDateFormat DATEFORMAT = new SimpleDateFormat("yyyy-MM-dd");

  @InitBinder
     protected void initBinder(WebDataBinder binder) {
          binder.registerCustomEditor(Date.class, new CustomDateEditor(DATEFORMAT, true));
     }

如何将查出的日期Data类型以Json格式输出到前端

标签:tom   orm   使用   final   时间   tee   tor   bsp   omd   

原文地址:http://www.cnblogs.com/OnlyCT/p/7093671.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!