First of all, if you extend SimpleFormController this controller should prepare the data required to render the view with form. Have a look at the referenceData methods in SimpleFormController.
Secondly, if your view can have multiple outcomes depending on which link or button you click on you can use MultiActionController. The methods on this controller can delegate to any controller you want, including a SimpleFormController.
Code:
public class ... extends MultiActionController {
private Controller someFormController = null;
public void setSomeFormController(Controller ctrl) {
this.someFormController = ctrl;
}
public ModelAndView someAction(HttpServletRequest request, HttpServletResponse response) throws Exception {
return this.someFormController.handleRequest(request, response);
}
}