Not able to print message from properties file using size annotation using spring-mvc
问题 I am completely new to Spring MVC. I have a Student class with below annotation @Size(min=2, max=10 ) public String studentHobby; and a StudentController class: @RequestMapping("admissionSuccess.html") public ModelAndView admissionSuccess(@Valid @ModelAttribute("student") Student student,BindingResult result) { if(result.hasErrors()) { ModelAndView model=new ModelAndView("admissionForm"); return model; } ModelAndView model=new ModelAndView("admissionSuccess"); model.addObject("student"