使用java代码而不是web.xml,我需要确保在特定页面上创建会话而不会超时。一旦用户经过此页面,同一会话需要超时10分钟。
//I am using this to set to no time limit:
session.setMaxInactiveInterval(-1);
//And i am using the same code but with different value to set the 10 minute limit:
session.setMaxInactiveInterval(TEN_MINUTES);
但是,会话永远不会超时..这让我觉得一旦会话非活动间隔设置为无限制,就无法撤消。
我需要像我描述的那样工作。
感谢...