org.springframework.validation.BeanPropertyBindingResult Exception
问题 Hi I am a new to spring framework. I have done a small example where I tried to validate my input field using spring validation api. This is the code @RequestMapping(value = "/applicationFormSubmit", method = RequestMethod.POST) public String insertdata( @ModelAttribute("applicationForm") @Valid ApplicationFormBean applicationFormBean, @RequestParam("file") MultipartFile file, BindingResult result,Model model) { if(result.hasErrors()) { return "applicationForm"; } try { Blob blob = Hibernate