posted 16 years ago
Everytime you send a request it is a new request for the server because HTTP communication is stateless. So, it does not matter if it is a same client or different client. Every request is treated as unique and different.
If you apply singleThreadModel, the instance of that servlet is giving to only one thread (request) at a time. it is NOT creating 100 instances for 100 requests. The instance will be only one, but it will be accessed by one thread (request) at a time.
Mission SCWCD. Mission SCJP Complete: SCJP 1.4 - 91%