当会话超时时,我正在尝试刷新页面。我将此添加到我<head>
的 HTML 部分:
<meta http-equiv="refresh"
content="${sessionScope['maxInactiveInterval']};url=${pageContext.servletContext.contextPath}/index.htm?reason=expired"/>
但是 this: ${sessionScope['maxInactiveInterval']}
or${sessionScope.maxInactiveInterval}
打印出空值(什么都没有)。
我知道在 JSF 中我可以使用:#{session.maxInactiveInterval}
并且它有效。如何在 JSP 页面中实现这一点?