添加如下註解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