在controller中添加以下代码自动绑定日期参数
@InitBinder
public void initData(WebDataBinder wdb) {
wdb.registerCustomEditor(Date.class, new CustomDateEditor(new SimpleDateFormat("yyyy-MM-dd"), true));
}
在controller中添加以下代码自动绑定日期参数
@InitBinder
public void initData(WebDataBinder wdb) {
wdb.registerCustomEditor(Date.class, new CustomDateEditor(new SimpleDateFormat("yyyy-MM-dd"), true));
}