Be careful with ThreadLocal. As someone else reported it here, you need to do a ThreadLocal.remove() when the app is shutdown otherwise, the content of the ThreadLocal won't eligible for garbage collection.
Btw, why did you need to use a ThreadLocal? On 7/10/06, Kosarev A.V. <[EMAIL PROTECTED]> wrote:
Thanks! I solved this problem using HttpSessionContextIntegrationFilter and ThreadLocal. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
-- Thanks, Henri.