I have a Wicket application and my pages expire very quickly. Why is this, and what can I do about it?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
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. |
|||
|
|
|
You can also do this programatically, by getting the HttpSession of the request and setting MaxInactiveInterval.
|
|||
|
|
|
In
should become
|
||||
|
|