SimpleFormController comes with formView and successView 'out of the box'. But you can add more to your controller, e.g.
Code:
public class MyController extends SimpleFormController {
private String viewOne;
private String viewTwo;
/* add getters & setters */
public ModelAndView onSubmit( . . .) {
. . .
}
}
Set the values in your config xml just as you would for formView & successView, and code the logic in your onSubmit to route to the appropriate view. That's to give you different 'success' views (the most common requirement, at least in my experience).
If you want different form views, you can override showForm() (I believe - i'ts not something I've ever done).
Hope this helps
Chris Harris
Carlisle, UK