default message [Failed to convert property value of type 'java.lang.String' to required type 'java.util.Date' for property 'createDate'; nested exception is java.lang.IllegalStateException: Cannot convert value of type [java.lang.String] to required type [java.util.Date] for property 'createDate': no matching editors or conversion strategy found]
這裏說明一下,咱們的項目後臺使用的是Spring MVC。在前端有個頁面裏有一個簡單的form表單查詢功能,表單裏面有一些日期字段的查詢,該日期字段是My97獲取到時間值得前端
表單中有屬性,值爲My97 Date值,獲取到後,提交到後臺,出現了上面的這一對異常信息。前端頁面提交的時候參數檢查了一下,看上去屬性值都是對的,沒什麼問題。可是後端就是沒法接收到參數。java
去百度了一下上面的異常信息,得出的解決方法,方案以下後端
在對應的controller中增長屬性編輯器,也就是在對應的Controller類中加上這個方法就能夠了編輯器
@InitBinder protected void initBinder(WebDataBinder binder) { SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd"); binder.registerCustomEditor(Date.class, new CustomDateEditor(dateFormat, true)); }
注意這塊的new CustomDateEditor(dateFormat, true)中的true,查看CustomDateEditor源碼能夠看到:ui
/** * Create a new CustomDateEditor instance, using the given DateFormat * for parsing and rendering. * <p>The "allowEmpty" parameter states if an empty String should * be allowed for parsing, i.e. get interpreted as null value. * Otherwise, an IllegalArgumentException gets thrown in that case. * @param dateFormat DateFormat to use for parsing and rendering * @param allowEmpty if empty strings should be allowed */public CustomDateEditor(DateFormat dateFormat, boolean allowEmpty) { this.dateFormat = dateFormat; this.allowEmpty = allowEmpty; this.exactDateLength = -1; }
當allowEmpty字段爲true
的時候form表單傳遞的值能夠爲空。不然會出現字符串解析爲date報錯
。 因此這裏最好是要設置一下爲true,否則若是沒有值,可能也報錯了this