一 全局跳转
所谓全局跳转,指的是所有的action都可以跳转到该页面。
所谓局部跳转,指的是只有本action可以跳转到该页面。
二 全局跳转配置
<global-forwards >
<forward name="goerr" path="/WEB-INF/err.jsp" />
</global-forwards>
三 代码示例
public ActionForward userloginout(ActionMapping mapping, ActionForm form,
HttpServletRequest request, HttpServletResponse response) {
// TODO Auto-generated method stub
//把用户的session清空
request.getSession().invalidate();
return mapping.findForward("goerr");
}