Ab kum wrote:Hi,
I have a situation where i need to go "BACK" and "NEXT" pages based on which page(Total 3 pages) you visit.At the 3 rd page you can submit to Database.at the end of 3 rd page when you submit to DB you need to save all three pages data to DB.
Can somebody help me how to handle this situation in Spring.
I am using JSP,AJAX,Spring MVC
my controller extends MultiActionController.
Thanks in advance.
That is exactly what Spring Web Flow is all about. Handling these multi pages requests/flows.
In older versions of Spring you could also use th AbstractWizardFormController class to implement.
Good Luck
Mark