concurrency « Thread « JSP-Servlet Q&A





1. Singleton vs Single Thread    stackoverflow.com

Normally Servlets are initiated just once and web container simple spawns a new thread for every user request. Let's say if I create my own web container from scratch and instead ...

2. List ConcurrentModificationException in servlet    stackoverflow.com

It's plenty of questions regarding ConcurrentModificationException for ArrayList objects, but I could not find yet an answer to my problem. In my servlet I have an ArrayList as a member object:

List ...

4. Servlets, threading, and concurrency    coderanch.com