「Spring」BindExceptionからエラーメッセージに変換するサンプル

サンプルコード

private MessageSource messageSource;
protected void ExceMsg(BindException errors){

  for(ObjectError oe : errors.getAllErrors()){
      String cft = this.messageSource.getMessage(oe, Locale.getDefault());
      System.out.println(cft);
  }
}

 

Software

Posted by arkgame