Greetings,
I'm trying to work out some problems with navigating from one controller to another. Here's my situation.
/confirmRequest maps to a form
A request comes into a Controller, and that controller does one of two things:
1) returns a ModelAndView where the view is a JstlView and the url is a JSP.
2) returns a ModelAndView where the view is really a form.
The first one works great, but the second keeps skipping the formView, and jumping straight to the successView. That is, I never see the jsp which renders the form to be completed... it just goes strraight to the Form's onSubmit(...) method.
In a controller, what is the correct manner to 'forward' to another controller, in this case, a SimpleAbstractForm. RedirectView? InternalResourceView? Something else?
/confirmRetreivalRequest is url mapped to the Form using a SimpleUrlHandlerMapping.
What am I doing wrong?
Thanks!
Christian


Reply With Quote