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

相關文章
相關標籤/搜索