Introduction When we implement a java servlet web application we face the problem of choosing in which scope to put information in, depending on the needs. In the normal scenarios we have to cope essentially with Context (i.e. ServletContext), Session and Request scopes. A slightly different requirement comes out when one wants to store some object or information in the … [Read more...] about Thread scope and ThreadLocal