标题:
大家帮忙
[打印本页]
作者:
LLW1314
时间:
2006-3-25 15:56
标题:
大家帮忙
Struts中struts-config.xml中<blobal-forwards></blobal-forwards>有什么作用,我不用它也一样实现forwards呀?
作者:
毛毛
时间:
2006-3-25 15:56
据个例子吧:你的配置中:
...
<global-forwards>
<forward name="logoff" path="/logoff.do"/>
<forward name="logon" path="/logon.jsp"/>
<forward name="success" path="/mainMenu.jsp"/>
</global-forwards>
...
<action path="/test/test"
type="test.web.TestAction"
name="testForm"
scope="request"
input="/jsp/test.jsp">
<forward name="success" path="/success.do?actionType=init"/>
</action>
...
在你的TestAction中,如果你用mapping.findForward("success"),就会执行/successs.do,可是如果你用mapping.findForward("logoff");虽然你在action配置中没有定义logoff,可是因为global中有,所以会执行/logoff.do
欢迎光临 编程开发论坛 (http://bbs.lihuasoft.net/)
Powered by Discuz! 6.0.0