How Rest Controller handle multiple request at same time for a single instance application?
问题 If multiple request are hit to a single RestController at the same time in a application, how it is handle for different scenarios (Multiple request to a single endpoints (only GET), or Multiple requests for multiple endpoints(GET, POST, PUT...)) Is multi-threading concept utilized? If yes is it possible to handle the requests in FIFO pattern? What is the maximum request a RestController can take ? Does RestController scope affect handling of requests (behavior of request scope with default