When threads are re-used from a thread-pool by a servlet, what happens to all the references they hold once they are returned to the pool? Are they somehow set to null? Any ideas?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
The thread doesn't hold any reference, other than those set by the servlet container itself, and those potentially stored in a ThreadLocal variable by your own code. And those are not set to null. |
|||
|
|