Suppose 10 clients requests for a Servlet. How many servlet instances are created? Also will it create any concurrency modification problem if each instance is trying to make changes? Please help.
Suppose 10 clients requests for a Servlet. How many servlet instances are created? Also
Share
Only one instance of servlet exist (per classloader) , and each request will be served on its own thread
So is there any thing that is shared amongst requests you need to manage synchronization