日期:2014-05-16 浏览次数:20639 次
//指定一个birthday进行绑定
@InitBinder
public void initBinder(WebDataBinder binder) {
DateFormat format = new SimpleDateFormat("yyyy-MM-dd");
binder.registerCustomEditor(Date.class, "birthday",
new CustomDateEditor(format, true));
}
//对所有的Date类型进行绑定
@InitBinder
public void initBinder(WebDataBinder binder) {
DateFormat format = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
binder.registerCustomEditor(Date.class,new CustomDateEditor(format, true));
}