我正在为我的应用程序使用struts2jquery网格插件。我正在使用拦截器进行会话超时,我在web.xml中配置会话超时,但问题是在会话超时之后它不会要求页面说login.jsp,我的struts.xml如下..
....
<interceptors>
<interceptor name="SessionCheckInterceptor" class="com.org.SessionCheckInterceptor" />
<interceptor-stack name="testSessionValidationStack">
<interceptor-ref name="SessionCheckInterceptor" />
<interceptor-ref name="defaultStack" />
</interceptor-stack>
</interceptors>
...
<action name="mytable" class="com.org.MyTable">
<interceptor-ref name="testSessionValidationStack"/>
<result name="success" type="json"/>
<result name="error">messages.jsp</result>
<result name="sessionexpired">login.jsp</result>
</action>
...
我可以在调试时进入拦截器类,但它不会将我重定向到登录页面。请有人告诉我代码中的问题是什么?
我的拦截器方法是..
public String intercept(ActionInvocation actionInvocation) throws Exception {
ActionContext context = actionInvocation.getInvocationContext();
Map<String, Object> sessionMap = context.getSession();
log.info(" retrived session..." + sessionMap);
if (sessionMap == null || sessionMap.isEmpty()
|| sessionMap.get("userName") == null) {
log.info(" session expired...");
addActionError(actionInvocation,"Session has been expired,please login again.");
return "sessionexpired";
}
String actionResult = actionInvocation.invoke();
return actionResult;
}
答案 0 :(得分:0)
检查您是否可以修改或改编此post。我认为它类似于你想要做的事情。
<强>建议强>
如果符合您的需要,您也可以在jsp中使用它。它是一个元标记,将其添加到您的jsp的head
标记中。当会话超时时,它将自动转发到sessionexpired.jsp
jsp。
<meta http-equiv="refresh" content="${pageContext.session.maxInactiveInterval};url=sessionexpired.jsp" />