我使用嵌入式 Jetty 实现作为我的 servlet 容器。这是一个小的配置片段:
WebAppContext context = new WebAppContext(warUrlString, "/");
SessionHandler sessionHandler = new SessionHandler();
SessionManager sessionManager = new HashSessionManager();
// in seconds, low for testing
sessionManager.setMaxInactiveInterval(20);
context.setSessionHandler(sessionHandler);
各个页面上的一些项目将通过 AJAX 定期更新。这些请求会阻止 HttpSession 失效吗?