SpringBoot 前端页面提交日期字符串转换Date问题
在Controller中加入:@InitBinder public void initBinder(ServletRequestDataBinder binder){ SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd"); binder.registerCustomEditor(Date.class, new CustomDateEditor(dateFormat,