neither bindingresult nor plain target object available as request attribute code example
Example: neither bindingresult nor plain target object for bean name spring mvc
// In the controller, you need to add the object as an attribute of the model:
model.addAttribute("login", new Login());
// Like this:
@RequestMapping(value = "/", method = RequestMethod.GET)
public String displayLogin(Model model) {
model.addAttribute("login", new Login());
return "login";
}