Issue
Reading some book that said the servlet is singleton from the container side. Is this true?
However even it is a singleton, we need to handle data synchronization etc
Solution
No. You can instantiate the same servlet class many times under different servlet names and URLs in the same web container and indeed in the same web-app.
Answered By - user207421
Answer Checked By - Clifford M. (JavaFixing Volunteer)