方法1:可以使用@ControllerAdvice增强Controller @ControllerAdvice public class BaseControllerAdvice { // 初始化绑定 @InitBinder public void initBinder(WebDataBinder binder) { //处理表单数据转换对象异常(Date) binder.registerCustomEditor(Date.class, new CustomDateEditor(new Simp…