one servlet or many servlets?
843841Jun 17 2003 — edited Jun 18 2003Hi
Is it better to have one servlet to serve all the requests for a webapp or different servlets to do different work.
In my application I have defined only one servlet which accepts all the requests and I have controller classes for each JSP page to handle and validate the input.
Now my question is , Is there going to be any bottle neck for serving the user requests since any requests from any user comes to the same servlet. I like to know if the server open up enough threads to serve all requests with out a problem, Is there a maximum requests a servlet can serve??
Please advise me on this
Thanks in advance