I have a Spring MVC application with a SimpleFormController (A). A's successView (B) should be a SimpleFormController itself, and should share the A's Command object as well as the model data that A returns in its onSubmit method ( return new ModelAndView(getSuccessView(), "model", model).addObject(command); ).
I have tried to solve this by using a RedirectView, but neither the Command object or the model data seem to be available in B's formView.
How could I solve this?
Do I have to use a wizard controller?


Reply With Quote
