InheritableThreadLocal and Tomcat
Java - No Comments » - Posted on May, 8 at 1:18 am
InheritableThreadLocal does not work with tomcat as tomcat thread pool does not clear the thread local contacts after a request has been executed. This results in no good way to share information information between the parent and the child threads that are created using thread local variables.
One way to solve this problem is to [...]
Posted in Java | No Comments »