傳遞時間類型到後臺報錯

添加如下註解spring

@JSONField(format="yyyy-MM-dd")
@DateTimeFormat(pattern="yyyy-MM-dd")

無效日誌

報錯日誌:orm

org.springframework.validation.BindException: org.springframework.validation.BeanPropertyBindingResult: 2 errorsit

 

解決方法:在controller加入如下方法io

@InitBinder //表單時間綁定
public void init(WebDataBinder binder) {
binder.registerCustomEditor(Date.class, new CustomDateEditor(new SimpleDateFormat("yyyy-MM-dd"), true));
}form

相關文章
相關標籤/搜索