spring mvc initBinder 사용 노트

407 단어 SpringMVC
spring mvc @initBinder 쓰다
포맷 날짜:yyy-MM-dd HH:mm
ArticleEntity 에서 publishDate 속성 지정
  @InitBinder
  public void initBinder(WebDataBinder binder) {
    SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm");
    dateFormat.setLenient(false);
    binder.registerCustomEditor(Date.class, "publishDate", new CustomDateEditor(dateFormat, false));
  }

좋은 웹페이지 즐겨찾기