struts1 action之间的跳转

                ActionForward actionForward = new ActionForward();
                actionForward.setPath("xxxxxxxx");//跳转的action的地址
                actionForward.setRedirect(true);
                return actionForward;
原文地址:https://www.cnblogs.com/penghq/p/9408002.html