欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

表单字段类型转化

程序员文章站 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));
}
// ...
}
相关标签: springmvc