Google News
logo
Java Servlets - Interview Questions
How to notify an object in session when session is invalidated or timed-out?
If we have to make sure an object gets notified when session is destroyed, the object should implement javax.servlet.http.HttpSessionBindingListener interface. This interface defines two callback methods – valueBound() and valueUnbound() that we can define to implement processing logic when the object is added as attribute to the session and when session is destroyed.
Advertisement