This page exists to record some stack traces that might be found during Spring MVC development and how to solve them. The intent is that you might be able to search keywords in your stack trace to get here and then be able to get out of your jam.
Neither BindingResult nor plain target object for bean name...
Stack Trace
Solution
The model being used by the view contains no command object. You either need to override the formBackingObject() method in your controller or shove a command object of the appropriate type into the model before reaching the view. Here's an example of overriding the formBackingObject method in a controller that extends CancellableFormController:
Labels:
None