Using the default <session-timeout>
setting for JSP, I want to show an "Your session expired (30 min)" message after the session expire and bring the user back to the login page.
To use ((HttpServletRequest) request).getSession(false) == null
to detect it isn't doing the job properly, because the session will be null already at the first time the user enters the application, making the message pop right on.
How can I avoid this? Is there a way to customize JSP's HttpSession so I could know when the real event happened?