Tomcat线程池使用架构

发布于 2024-08-08 02:29:49 字数 173 浏览 2 评论 0原文

我正在开发 servlet 过滤器,旨在管理 servlet 处理期间应该可用的一些资源。由于我对Tomcat不是很熟悉,所以我有一些疑问。是否保证对于单个请求,所有附加的过滤器和 servlet 本身都由单个(且相同)线程处理?换句话说:我可以假设 FilterChain.doFilter() 方法不使用与其调用者不同的线程吗?

I'm developing servlet filter intended to manage some resources which should be available during servlet processing. Since I'm not very familiar with the Tomcat, I have some doubt. Is it guaranteed that, for single request, all attached filters and the servlet itself are processed by single (and the same) thread? In other words: can I assume that FilterChain.doFilter() method doesn't use different thread than its caller?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

十雾 2024-08-15 02:29:49

是的,这是由 servlet 规范保证的。

Yes, this is guaranteed by the servlet specification.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文