concurrency « Variable « JSP-Servlet Q&A





1. threadlocal variables in a servlet    stackoverflow.com

Are the threadlocals variables global to all the requests made to the servlet that owns the variables? I am using resin for the server. Thanks for awnser. I think I can make my self ...

2. Does a variable accessed by multiple threads in a java servlet need to be declared volatile?    stackoverflow.com

In the book Java Servlet Programming, there's an example servlet on page 54 which searches for primes in a background thread. Each time a client accesses the servlet, ...