Wicket 中的页面很快就会过期
我有一个 Wicket 应用程序,我的页面很快就会过期。 为什么会这样?我该怎么办?
I have a Wicket application and my pages expire very quickly. Why is this, and what can I do about it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我认为“我的页面即将过期”是指会话即将过期吗? 如果是这样,您可以在项目的 web.xml 中增加会话超时:
超时以分钟为单位指定。
I assume that by "My page is Expiring" you mean that the session is expiring? If so, you can increase the session-timeout in the web.xml of your project:
The timeout is specified in minutes.
您还可以通过获取请求的 HttpSession 并设置 MaxInactiveInterval 以编程方式执行此操作。
You can also do this programatically, by getting the HttpSession of the request and setting MaxInactiveInterval.
在
web.xml
中,将会话超时从30分钟增加到200分钟,如下所示:应该变成
In
web.xml
, increase the session timeout from 30 minutes to 200 minutes, as shown below:should become