In the AbstractWizardFormController I may need to skip to the next controller before I get to the end of the wizard (processFinish()).

So I have overridden the String getViewName() method so it redirects me to an AbstractCommandController.

However I get a bind exception as I assume I am using two different Command objects between the two controllers and the first Command won't bind to the redirect view.
Is there a way around this? Or am I doing this completely wrong?

Thanks for any help in advance.