Ni BindingResult ni objet cible simple pour le nom de bean 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"; 
}
Vishal