2.struts2.0的全局跳转
<global-results>
<result name=”ok”>/ok.jsp</result>
</global-results>
3.struts2.0的局部跳转:
<action name=”login” class=”dd.login”>
<result name=”ok”>/ok.jsp</result>
</action>
4.全局异常:
<global-exception-mappings>
<exception-mapping result=”error” exception=”java.lang.Exception”/>
</global-exception-mappings>
要在<global-results>
<result name="error">/error.jsp</result>
</global-results>
5.在action中指明该action处理的方法:
<action name=”login” class=”xxx.loginAction” method=”login”>
<result name=”ok”>/ok.jsp</result>
</action>
6.在action中跳转到其他的action <result name=”ok” type=”chain”>list</result>
7.在action中重定向到其他的界面:<result name=”error” type=”redirect”>/error.jsp</result>
struts2跳转
最新推荐文章于 2019-08-19 14:30:44 发布