javax.servlet.ServletException:Neither BindingResult nor plain target object解决方案

Spring MVC使用中出现如上异常:
javax.servlet.ServletException:Neither BindingResult nor plain target object for bean name 'xxx'available as request attribute 

解决方案:注意jsp页面中form中modelAttribute="xxx",xxx为须为ModelName的小写形式,如Model Product在jsp页面中应使用product作为modelAttribute。因为在form提交验证出错后,Model自动的request设置中,将采用如上规范。





你可能感兴趣的:(spring,mvc,bean,jsp,servlet)