Back Forum Reply New

MultiActionController with SimpleFormController

We are developing a custom framework for a financial aplication using Spring MVC in a project. Our plan is to use our own navgiation rules and logics using own validation/error handling logic and plug those into Spring MVC for final output generation.

For an implementation demo, I initially planned to use AbstractWizardController. However, it needs the pages to be set during instantiaiton of the wizard and our own navigation rule doesn't allow us to do so. Our rule determines the nedxt page to show based on some rule executions. So instead now I am planning to write a MultiActionCcontroller as front controller and several simple form controllers that will be called based on our own navigation framework. I am planning to keep my domain/business object in session so that its available any time in all the controllers.

How do I use these two types of controllers together to switch back and forth? How the multi action controller forwards request to 5 different simlpe form controllers?

Have you looked into Web Flow?

con...y/WEBFLOW/Home

It sounds like it would help accomplish your goal.
¥
Back Forum Reply New