Wicket 中的页面很快就会过期

发布于 2024-07-27 12:04:14 字数 50 浏览 4 评论 0原文

我有一个 Wicket 应用程序,我的页面很快就会过期。 为什么会这样?我该怎么办?

I have a Wicket application and my pages expire very quickly. Why is this, and what can I do about it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

梦魇绽荼蘼 2024-08-03 12:04:14

我认为“我的页面即将过期”是指会话即将过期吗? 如果是这样,您可以在项目的 web.xml 中增加会话超时:

<session-config>
        <session-timeout>30</session-timeout>
</session-config>

超时以分钟为单位指定。

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:

<session-config>
        <session-timeout>30</session-timeout>
</session-config>

The timeout is specified in minutes.

同展鸳鸯锦 2024-08-03 12:04:14

您还可以通过获取请求的 HttpSession 并设置 MaxInactiveInterval 以编程方式执行此操作。

Integer timeoutInMinutes = 20;
Request request = RequestCycle.get().getRequest();
if( request instanceof WebRequest )
{
    WebRequest wr = (WebRequest)request;
    HttpSession session = wr.getHttpServletRequest().getSession();
    if( session != null ) {
        session.setMaxInactiveInterval(timeoutInMinutes*60);
    }
}

You can also do this programatically, by getting the HttpSession of the request and setting MaxInactiveInterval.

Integer timeoutInMinutes = 20;
Request request = RequestCycle.get().getRequest();
if( request instanceof WebRequest )
{
    WebRequest wr = (WebRequest)request;
    HttpSession session = wr.getHttpServletRequest().getSession();
    if( session != null ) {
        session.setMaxInactiveInterval(timeoutInMinutes*60);
    }
}
記憶穿過時間隧道 2024-08-03 12:04:14

web.xml中,将会话超时从30分钟增加到200分钟,如下所示:

<session-config>
    <session-timeout>30</session-timeout>
</session-config>

应该变成

<session-config>
    <session-timeout>200</session-timeout>
</session-config>

In web.xml, increase the session timeout from 30 minutes to 200 minutes, as shown below:

<session-config>
    <session-timeout>30</session-timeout>
</session-config>

should become

<session-config>
    <session-timeout>200</session-timeout>
</session-config>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文