Hi to all,
I'm continuously getting this error message:
Error 500: Could not find Errors instance for bean 'reo' in request: add the Errors model to your ModelAndView via errors.getModel()
Whenever I am trying to give a model to a jsp view using the formBackingObject method using code like this:
and a spring bind in a jsp like this:Code:protected Object formBackingObject(HttpServletRequest request) throws ServletException { IReoDeliverable reo = Reo.getReo("REO601R-53-00-001","--"); return reo.getModel(); }
Code:<spring:bind path="reo.reportNumber"> <input type="text" name="reportNumber" value='<c:out value="${status.value}"/>'> </spring:bind>
Any ideas?????


Reply With Quote