spring mvc使用@InitBinder標籤對錶單資料繫結的方法,mvc@initbinder

來源:互聯網
上載者:User

spring mvc使用@InitBinder標籤對錶單資料繫結的方法,mvc@initbinder

在SpringMVC中,bean中定義了Date,double等類型,如果沒有做任何處理的話,日期以及double都無法綁定。

解決的辦法就是使用spring mvc提供的@InitBinder標籤

在我的項目中是在BaseController中增加方法initBinder,並使用註解@InitBinder標註,那麼spring mvc在綁定表單之前,都會先註冊這些編輯器,當然你如果不嫌麻煩,你也可以單獨的寫在你的每一個controller中。剩下的控制器都繼承該類。spring自己提供了大量的實作類別,諸如CustomDateEditor ,CustomBooleanEditor,CustomNumberEditor等許多,基本上夠用。

當然,我們也可以不使用他自己內建這些編輯器類,那下面我們自己去構造幾個

import org.springframework.beans.propertyeditors.PropertiesEditor;  public class DoubleEditor extends PropertiesEditor {    @Override    public void setAsText(String text) throws IllegalArgumentException {      if (text == null || text.equals("")) {        text = "0";      }      setValue(Double.parseDouble(text));    }      @Override    public String getAsText() {      return getValue().toString();    }  }  
import org.springframework.beans.propertyeditors.PropertiesEditor; public class IntegerEditor extends PropertiesEditor {    @Override    public void setAsText(String text) throws IllegalArgumentException {      if (text == null || text.equals("")) {        text = "0";      }      setValue(Integer.parseInt(text));    }      @Override    public String getAsText() {      return getValue().toString();    }  }  
import org.springframework.beans.propertyeditors.PropertiesEditor;  public class FloatEditor extends PropertiesEditor {    @Override    public void setAsText(String text) throws IllegalArgumentException {      if (text == null || text.equals("")) {        text = "0";      }      setValue(Float.parseFloat(text));    }      @Override    public String getAsText() {      return getValue().toString();    }  }  
import org.springframework.beans.propertyeditors.PropertiesEditor; public class LongEditor extends PropertiesEditor {    @Override    public void setAsText(String text) throws IllegalArgumentException {      if (text == null || text.equals("")) {        text = "0";      }      setValue(Long.parseLong(text));    }      @Override    public String getAsText() {      return getValue().toString();    }  } 

在BaseController中

@InitBinder    protected void initBinder(WebDataBinder binder) {      binder.registerCustomEditor(Date.class, new CustomDateEditor(new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"), true));  /    binder.registerCustomEditor(int.class, new CustomNumberEditor(int.class, true));      binder.registerCustomEditor(int.class, new IntegerEditor());  /    binder.registerCustomEditor(long.class, new CustomNumberEditor(long.class, true));     binder.registerCustomEditor(long.class, new LongEditor());      binder.registerCustomEditor(double.class, new DoubleEditor());      binder.registerCustomEditor(float.class, new FloatEditor());    }  

複製代碼 代碼如下:
public class org.springframework.beans.propertyeditors.PropertiesEditor extends java.beans.PropertyEditorSupport { 

看到沒?如果你的編輯器類直接繼承PropertyEditorSupport也可以。

以上就是本文的全部內容,希望對大家的學習有所協助,也希望大家多多支援幫客之家。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.