Is there any way to manage the following scenario using Spring:
I have to logout the user if he is inactive for 30 minutes. However, on the elapse of the 28th minute, I have to display a warning pop-up saying that the user will be logged out in 2 more minutes. If the user responds his session is maintained. Otherwise, his session expires in 2 minutes and he is redirected to the home page.
Using Spring 3.0.
*Spring is handling all my session management and the servlet container is Tomcat. The requirements of the client I am working for that any functionality created should function well without javascript as well. This is why I was searching for a Spring based solution.