For some reason I cannot seem to fix this issue, even after looking at multiple examples on here.
I am trying to handle a form using Spring 3 MVC, but I am getting t
For me this error was resolved by declaring
@ModelAttribute("person") public Person createFormModelAttribute() { return new Person(); }
in the controller. And also on the jsp, I refer to the model attributes by referencing the class name: