首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 软件管理 > 软件架构设计 >

struts2中action跳转到另一个action的步骤

2014-03-14 
struts2中action跳转到另一个action的方法从action1直接跳转到action2,有两种方法: 1. 需要保存前一个acti

struts2中action跳转到另一个action的方法
从action1直接跳转到action2,有两种方法:

1. 需要保存前一个action的属性信息时使用:
          <result type= "chain ">action2</result>
2. 不保存前一个action的参数可以用这种方法:
          <result    type= "redirect-action "> ActionName </result>

1.<struts>  
2.    <package name="tutorial" extends = "struts-default">  
3.        <action name="Login" type="chain">GetBook</result>  
5.            <result name="error">/error.jsp</result>  
6.        </action>  
7.          
8.        <action name="GetBook" class= "com.gyj.tutorial.GetBooksAction">  
9.            <result name="success">/showBook.jsp</result>  
10.            <result name="login">/login.jsp</result>  
11.        </action>  
12.    </package>  
13.</struts> 

热点排行