- 在SpringBoot启动类同级目录创建一个带有@ControllerAdvice注解的类
@ControllerAdvice
public class GlobalExceptionController {
@InitBinder
public void initBinder(WebDataBinder webDataBinder) {
webDataBinder.registerCustomEditor(Date.class, new CustomDateEditor(new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"), false));
}
}
- 配置之后,接口Date入参可以接收 2018-01-01 10:05:53类型的数据