I have a webapp which uses a jar. The jar creates a threadpool. Whenever a request comes in to my servlet I call a method defined in the jar. This method uses one thread from the threadpool maintained by the jar for doing it's work.
The threadpool which the jar uses gets it's threads from where? Is it borrowing the threads from the servlet conainters threadpool?