我尝试使用像这样的粘合剂的Spring mvc date formater
@InitBinder
public void binder(WebDataBinder binder) {
SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd");
dateFormat.setLenient(true);
binder.registerCustomEditor(Date.class, new CustomDateEditor(dateFormat, true));
}
但我需要格式"dd-MM-YYYY"
。如果我使用这种格式mysql保存错误的日期
表格数据:07-12-1980
MySql数据:0013-05-02
答案 0 :(得分:0)