首页 > 代码库 > Thread -- Request
Thread -- Request
Servlet容器应该绝大部分(有可能全部)是Thread per Request,每个请求一个线程。此外有Thread per Connection,应该不是用于Servlet容器。请见
How are Threads allocated to handle Servlet request?
另外,大部分容器使用线程池管理线程。
上面链接中也提到在Java EE环境下不要创建太多自己的线程,要向容器申请线程,参见评论中的链接:
Why is spawning threads in Java EE container discouraged?
如果在线程中使用threadlocal,也许需要考虑清理threadlocal,请见:
How to clean up threadlocals
ThreadLocal Variables and Thread Pools – It Can Go Wrong
Thread -- Request
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。