InterviewSolution
Saved Bookmarks
| 1. |
How Do Servlets Handle Multiple Simultaneous Requests? |
|
Answer» When a REQUEST comes in, the WEB server will start a new thread and the request is ASSIGNED to a thread, which CALLS a service METHOD of the servlet. When a request comes in, the web server will start a new thread and the request is assigned to a thread, which calls a service method of the servlet. |
|