What is the purpose and usage of @ModelAttribute in Spring MVC?
@ModelAttribute
Annotation that binds a method parameter or method return value to a named model attribute, exposed to a web view.
public String add(@ModelAttribute("specified") Model model) { ... }