Servlet specification says that Only a single instance of a servlet is created by the Container at startup time. If more than one user calls that servlet, an additional
thread is created to serve the request.
I just want to know that Can we limit the number of threads ? In other words If one lakh (100,000 users) access the servlet at the same time. Will one lakh threads be created.
where can we specify that servlet engine can't create threads beyond a specified limit, If possible.
If no, where can we specify to limit the number of threads ?
Thanks in advance