0

我正在一个 Web 项目中创建 Executor,以便在响应返回到 Web 后,可调用对象可以完成工作。callable 在幕后所做的工作不是当前页面所必需的,而是后续页面所必需的。

据我所知,当响应返回到网络时,servlet 线程可以自由处理另一个请求。在这种情况下,尽管 servlet 线程创建了一个执行程序服务,但即使可调用对象处于活动状态,只要响应被发回,它就应该可以处理另一个传入请求。我的理解正确吗?

4

1 回答 1

0

If you are creating a new thread, which it sounds like you are, then you are correct. The thread handing the Servlet request goes back in the pool and is free to return results and take the next request.

于 2013-03-28T11:41:39.133 回答