java.lang.IllegalStateException: Neither BindingResult nor plain target object for bean name 'command' 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"; 
}

Tags:

Java Example