This week's book giveaway is in the General Computing forum. We're giving away four copies of Arduino in Action and have Martin Evans, Joshua Noble, and Jordan Hochenbaum on-line! See this thread for details.
I like to implement HttpSessionBindingListener in an object that needs to save itself when a session is invalidated. We have an on-line exam that does that if the user is dropped or logged off before finishing so the test can be resumed. Bill
-binding- is implemented by the object which will be set as session's attribute. it notifies this object when it is bound or unbound with a session. (valueBound/valueUnbound methods...). -attribute- is implemented by your servlet and throws an event when an object (attribute) is added, removed or replaced in session. so, what makes the difference is the "side" you want to be notified about the event - does your object has to "know" it was addedor removedfrom a session or does your session has to " know" anattribute was added/removed/replaced in it.