spring3中struts2链的等价物是什么?

时间:2015-09-09 08:53:14

标签: java spring

我是spring3的新手。我从struts2学到了春天。在struts2中,我使用了链将请求参数值传递给另一个动作。

<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>

如何在spring3中实现相同的功能?

0 个答案:

没有答案