Life cycle of a servlet
when any request comes for a servlet,(1)a thread is taken from pool and assigned to that request and also(2)request,response objects are created.Kindly let me know what is the sequence of these steps, thread is created first or request,response objects are created first.
# 2
> Kindly let me know what is the sequence of these> steps, thread is created first or request,response> objects are created first.What do you plan to do differently based on the answer to that question?