Hi all,
If I have a
servlet by the name of HelloServlet.java, normally only one instance of this servlet would handle all the client requests. If the number of requests made to this servlet is very high, then where do I specify that there should be 5 instances of this servlet on the server side handling the client request?
Do I specify this in the web.xml or in the server.xml or somewhere else?
Boney