I am newbie to spring3.I learned spring from struts2.In struts2 i have used chain for passing the request parameter value to one action to another.
<action name="some" class="com.hello">
<result name="success" type="chain">world</result>
</action>
<action name="world" class="com.world">
<result name="success">helloworld.jsp</result>
</action>
How to achieve the equivalent thing in spring3?