|
Subject:
|
controller to controller
|
|
Posted By:
|
tigransh
|
Post Date:
|
12/28/2005 6:45:17 AM
|
Is there an explicit way to call a controller from a controller in the Spring MVC model?
|
|
Reply By:
|
mohan.karunanidhi
|
Reply Date:
|
11/10/2006 11:48:13 PM
|
we can redirect the control between controllers using the following command in the controller .
String success="myapp.do?parameter1=value¶meter2=value"
return new ModelAndView(new RedirectView(success));
Yours Mohan Karunanidhi
|