springmvc 时间处理

/**
     * 时间处理
     * @param binder
     */
     @InitBinder 
      public void initBinder(WebDataBinder binder) { 
          SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd");  
          dateFormat.setLenient(false);  
          binder.registerCustomEditor(Date.class, new CustomDateEditor(dateFormat, true));   //true:容许输入空值,false:不能为空值
          
    }.net

相关文章
相关标签/搜索