java - source code of server that creates multiple servlet threads to handle concurrent requests -
folks,
i have been trying understand how server creates multiple servlet threads handle each concurrent request appropriately , delegates these request details service() method of servlet instance.
i want understand , analyze server's source-code or specific set of classes understand creation & maintenance of concurrent request processing through multi-threading.
my understanding/assumption : there unanimous servlet instance per mapping , concurrent requests served individual servlet thread (spawn server - multi-threading process want know in detail/source-code) executed separately within own stack.
Comments
Post a Comment