spring mvc initBinder 使用笔记

来源:互联网 发布:vb6软件下载 编辑:程序博客网 时间:2024/06/18 06:30


spring mvc @initBinder 使用

格式化日期: yyyy-MM-dd HH:mm

指定 ArticleEntity 中 publishDate 属性


  @InitBinder  public void initBinder(WebDataBinder binder) {    SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm");    dateFormat.setLenient(false);    binder.registerCustomEditor(Date.class, "publishDate", new CustomDateEditor(dateFormat, false));  }



0 0
原创粉丝点击