We know that when new client request comes for a
servlet then container calls the service method from a new
thread.
And service method always calls the get or post method.
So, my question is if we synchronize the get or post method and when client is working on that servlet then other client has to wait or not because of synchronization issues?