vote up 0 vote down star

I am having a session variable whose value can be changed from java and from Jsp as well. Is it possible to detect when this variable's value is changed?

flag

2 Answers

vote up 2 vote down check

You can implement the HttpSessionAttributeListener and you will get notification every time the value is replaced. Notice that in the following cases (which is highly not recommended) it won't work:

MyObject myobj = (MyObject)session.getAttribute("obj");
myobj.setValue(newValue);
link|flag
vote up 1 vote down

Use an HttpSessionAttributeListener.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.