怎样使用response.sendRedirect是地址栏也改变!因为我想拦截检查失败是转向index.jsp页面,现在能转向,但地址还是之前的页面地址!
ActionContext ctx = invocation.getInvocationContext();
Map session = ctx.getSession();
String user = (String) session.get(Constants.USERID);
if (user != null) {
return invocation.invoke();
}
ctx.put("tip", "请登陆系统!");
return Action.LOGIN;