在 Wicket 中设置超时值?
如何在不使用 web.xml 文件的情况下在 Wicket 中设置超时值;我没有使用。我的项目使用可添加书签的页面,我认为这可以防止会话正常超时。
How do you set the timeout value in Wicket without using the web.xml file; I am not using one. My project uses bookmarkable pages which I think prevent the session from timing out normally.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要从 Wicket 内部而不是更常用的方式(通过 web.xml)操作类似的内容,您需要掌握正在使用的实际 HttpSession。
我没有尝试这样做,但是这个 博客条目提供了一些如何建立此连接的提示。
它有点旧,所以一些细节会发生变化。博客的最后一条评论提供了博客主要内容的替代方案,看起来更新一些,更有前途。
To manipulate something like this from inside Wicket instead of the more usual way (through web.xml), you'll need to get hold of the actual HttpSession being used.
I haven't tried to do this, but this blog entry provides some hints of how to make this connection.
It's a bit old, so some of the details will have changed. The last comment to the blog provides an alternative to the main content of the blog and looks a bit more recent and more promising.