如何在Tomcat中配置应用程序会话的最大持续时间?

时间:2019-01-10 08:41:12

标签: tomcat session-management tomcat8.5

我需要将Tomcat中应用程序会话的最大持续时间配置为24小时。

我无法在文档中找到合适的配置:

https://tomcat.apache.org/tomcat-8.5-doc/config/http.html

sessionTimeoutSSLHostConfig,但我需要Connector配置;我们在Tomcat之前终止WebServer中的SSL连接,但由Tomcat处理会话管理。)

已添加

我们已经处理了会话过期超时(Tomcat Session Timeout web.xml)。

最大持续时间超时意味着即使用户在所有时间内都处于活动状态,其应用程序会话也将在最大持续时间超时之后失效。

3 个答案:

答案 0 :(得分:3)

HttpSessionListener将仅通知会话的创建和销毁,但不会在每个页面请求上被调用。

我将实现一个过滤器来检查会话的创建时间,并使会话无效,并设置标头或重定向。

在web.xml中添加:

<filter>
    <filter-name>Max Session Duration</filter-name>
    <filter-class>com.your.package.MaxSessionDurationFilter</filter-class>
    <init-param>
        <!-- Maximum session duration in hours -->
        <param-name>maxduration</param-name>
        <param-value>24</param-value>
    </init-param>
</filter>

和类似的映射

<filter-mapping>
  <filter-name>Max Session Duration</filter-name>
  <url-pattern>*.jsp</url-pattern>
</filter-mapping>

然后,过滤器的实现类似于:

package com.your.package;

import java.io.IOException;

import javax.servlet.Filter;
import javax.servlet.FilterChain;
import javax.servlet.FilterConfig;
import javax.servlet.ServletException;
import javax.servlet.ServletRequest;
import javax.servlet.ServletResponse;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

public class MaxSessionDurationFilter implements Filter {

    private final long oneHourMillis = 1000*60*60;

    private long maxDuration;

    private FilterConfig filterConfig;

    @Override
    public void init(FilterConfig fc) throws ServletException {
        filterConfig = fc;
        maxDuration = Long.parseLong(filterConfig.getInitParameter("maxduration"));
    }

    @Override
    public void doFilter(ServletRequest req, ServletResponse resp, FilterChain chain)
        throws IOException, ServletException {
        HttpServletRequest httpReq = (HttpServletRequest) req;
        HttpServletResponse httpResp = (HttpServletResponse) resp;
        final long creationTime = httpReq.getSession().getCreationTime();
        final long currentTime = System.currentTimeMillis();
        if (currentTime-creationTime > maxDuration*oneHourMillis) {
            httpReq.getSession().invalidate();
            // Could also set headers to 403 forbidden
            // httpResp.setStatus(HttpServletResponse.SC_FORBIDDEN);
            httpResp.sendRedirect("expiredsession.jsp");
        } else {
            chain.doFilter(req, resp);
        }
    }

    @Override
    public void destroy() { }

}

答案 1 :(得分:0)

可以实施HttpSessionListener并在24小时后销毁会话:

https://tomcat.apache.org/tomcat-8.5-doc/servletapi/javax/servlet/http/HttpSessionListener.html

问题是否存在更好的方法。

答案 2 :(得分:0)

您可以使用setMaxInactiveInterval

配置最大持续时间会话
  

指定Servlet容器使该会话无效之前客户端请求之间的时间(以秒为单位)。

使用覆盖sessionCreated的{​​{3}}方法创建会话时更新:

public class MyHttpSessionListener implements HttpSessionListener{
  public void sessionCreated(HttpSessionEvent event){
    event.getSession().setMaxInactiveInterval(24*60*60); //24 Hours
  }
  

使用HttpSessionListener。在sessionCreated()方法中,可以以编程方式设置会话超时。