Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Pages expire very quickly in Wicket

Tags:

java

wicket

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

like image 215
JGC Avatar asked Dec 07 '22 06:12

JGC


1 Answers

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.

like image 139
jsight Avatar answered Dec 20 '22 08:12

jsight