How to alert user before session expires in Java?
In StackOverflow this question is discussed so many times. But my question is slightly different. I have a requirement to modify the existing application. My application is very big. Session will be expired after 30 mins if there is no response from the user. I want to display the alert before session expires, say at the 25th min I would like to display a prompt to user about session expires
In my application, more than 2000 jsp's are used and no common js is used. So I cannot change all the jsp file to include the javascript code for checking the session timeout.
How to handle this?