Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当 servlet 从线程池中重用线程时,一旦它们返回到池中,它们持有的所有引用会发生什么情况?它们是否以某种方式设置为空?有任何想法吗?
线程不保存任何引用,除了那些由 servlet 容器本身设置的引用,以及那些可能由您自己的代码存储在 ThreadLocal 变量中的引用。
并且那些没有设置为空。