Session clean up question
Hi all,
Suppose that we have a session scoped bean in a web application (jsp, servlets, ..) which has several object attributes like java.util.List, ...
Now, how to clean up the session when this bean is no more used ?
Should I simply call session.removeAttribute("beanName") or should I remove all the bean's attributes then remove it ?
thx

