A simple ForwardAction equivalent in Spring MVC
I'm a new to Spring MVC & I'm trying to figure a way to forward a request URI to a JSP. This is somewhat an equivalent of...
<action path="/flush"
type="org.apache.struts.actions.ForwardAction"
parameter="/WEB-INF/pages/flush.jsp"
roles="admin"/>
...in Struts. Is it possible to do this using plain configuration or is it mandatory that I implement the Controller interface (or the AbstractController class) to achieve this? Any info is appreciated.
Thanks.