表单字段类型转化
程序员文章站
2022-07-13 15:49:58
...
当我们提交表单到action 由于类型转换错误,导致返回400 错误。
@Controller public classMyFormController { @InitBinder public voidinitBinder(WebDataBinder binder) { SimpleDateFormat dateFormat = newSimpleDateFormat("yyyy-MM-dd"); dateFormat.setLenient(false); binder.registerCustomEditor(Date.class, newCustomDateEditor(dateFormat, false)); } // ... }