Is there an equivalient/similar action mapping xml configuration available for SpringMVC just as there is for Struts 2?
e.g. in a Struts2 app I have this:
<action name="index" class="homeAction">
<interceptor-ref name="myAppVarsBasic" />
<interceptor-ref name="defaultStack" />
<result name="input">/WEB-INF/jsp16/home.jsp</result>
<result name="userDisplay">/WEB-INF/jsp16/userDisplay.jsp</result>
<result name="changePassword" type="redirectAction" >passwordReset!changePass.do</result>
</action>
Is there a similar way to configure action mappings, redirects and to where with Spring MVC using xml config?
I'm teaching myself (with help of SO and Google) S2 to SpringMVC but find most resources seem to handle redirect directly from the action (or is that Controller in MVC?) e.g.:
return "redirect:index";