在strtus1 中,很多都是直接的action 配置后进行跳转的

这样地址栏是不会改变的

如果需要进行浏览器跳转

ActionForward actionForward = new ActionForward();
actionForward.setPath("/../customer/logon.do");
actionForward.setRedirect(true);
return actionForward;	   

  

相关文章: