1.Use annotation at class level for formObject:
@Configurable
public class FormObject {
//setter, getter
}
2.Use annotation at class level in Controller
@Controller
@SessionAttributes(value = { "formController" })
public class MyController(){
@ModelAttribute("formObject")
........
}