Struts and Spring MVC uses Front controller pattern, so if I want to develop an application using any one of these frameworks then the server creates multiple threads to support multiple user requests.
So if my application is used by thousands of users at a given point of time then will the server will be able to serve the application by creating so many threads without any issues?
Is there any limit for number of threads created by any application server? Will there be any scalability issues that we face? I tried to search in internet but I have not found proper results, please help me in this.