1. 程式人生 > >SpringBoot介面接收Date引數,可以傳入String型別

SpringBoot介面接收Date引數,可以傳入String型別

  • 在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型別的資料