In my Spring MVC based web-app, I'm manually creating an Errors/BindingResult object after manually validating one of my domain objects. I can add my domain object into the Model by doing the obvious:
model.addAttribute("myObject", myObject);
After I do validation and have created an Errors/BindingResult object, under which key should I add that to the model?
Note: I can't use the automatic validation provided by @Valid and bind my domain and errors object at the method level. I really do need to know how to do this manually.