溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

SpringMVC日期類型接收空值異常問題解決方法

發(fā)布時(shí)間:2020-09-07 20:08:39 來源:腳本之家 閱讀:190 作者:smileNicky 欄目:編程語言

最近遇到SpringMVC寫個(gè)controller類,傳一個(gè)空串的字符類型過來,正常情況是會自動轉(zhuǎn)成date類型的,因?yàn)閿?shù)據(jù)表對應(yīng)類類型就是date的

解決方法是在controller類的后面加個(gè)注解:

@InitBinder
  protected void initDateFormatBinder(WebDataBinder binder) {
    SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd");
    binder.registerCustomEditor(Date.class, new CustomDateEditor(dateFormat, true));
  }

注意,上面的代碼CustomDateEditor構(gòu)造函數(shù)要傳個(gè)true參數(shù),表示允許傳空字符串來進(jìn)行日期類型轉(zhuǎn)換

CustomDateEditor 里源碼

public class CustomDateEditor extends PropertyEditorSupport {
  private final DateFormat dateFormat;
  private final boolean allowEmpty;
  private final int exactDateLength;

  public CustomDateEditor(DateFormat dateFormat, boolean allowEmpty) {
    this.dateFormat = dateFormat;
    this.allowEmpty = allowEmpty;
    this.exactDateLength = -1;
  }
  ....
}

Spring Bean類的裝載是通過BeanWrapperImpl來實(shí)現(xiàn),可以寫個(gè)簡單的例子,驗(yàn)證這個(gè)問題,DispatchInfoModel 類是我自己的測試類,里面有signDate這個(gè)date類型的參數(shù)

設(shè)置為true的情況,是可以正常運(yùn)行的

public class mytest {
  public static void main(String[] args) {
    DispatchInfoModel tm = new DispatchInfoModel();
    BeanWrapper bw = new BeanWrapperImpl(tm);
    bw.registerCustomEditor(Date.class, new CustomDateEditor(new SimpleDateFormat("yyyy-MM-dd"), true));
    bw.setPropertyValue("signDate", "");
    System.out.println(tm.getSignDate());
  }
}

設(shè)置為false的情況,會拋出異常:

public class mytest {
  public static void main(String[] args) {
    DispatchInfoModel tm = new DispatchInfoModel();
    BeanWrapper bw = new BeanWrapperImpl(tm);
    bw.registerCustomEditor(Date.class, new CustomDateEditor(new SimpleDateFormat("yyyy-MM-dd"), false));
    bw.setPropertyValue("signDate", "");
    System.out.println(tm.getSignDate());
  }
}

SpringMVC日期類型接收空值異常問題解決方法

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持億速云。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI