拿走不谢!
1.在controller中加入下面这段代码 @InitBinder
protected void initDateFormatBinder(WebDataBinder binder){
SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd");
binder.registerCustomEditor(Date.class, new CustomDateEditor(dateFormat,true));
}
2. 在实体类的日期类型属性上添加注解
@DateTimeFormat(pattern = "yyyy-MM-dd")



