Does application server create new thread for each request from same user?
问题 Here is the simple scenario: User triggers some operation from a web page of the web application. This operation is heavy one and takes some more time. And before the operation is completed on server side, user triggers say same operation with some different parameters. so the second operation for second request will also start processing. So in this case, are there two different threads like 1st one processing first request and other for 2nd request ? or it's just one thread processing both