I would like to know if it is possible after processing a Controller to redirect to another Controller.
Example:
After filling up a form and inserting the data in the database(InsertController) I want to show a list of all values(ListController)
This are 2 different actions so should be in different Controllers, how can configure this in Spring MVC?


Reply With Quote