Thread Local is an interesting and useful concept, yet most of the Java developers are not aware of how to use that. In this post, I’ll explain what is Thread Local and when to use it, with an example code.
Since it’ll be little tough to understand this concept at first, I’ll keep the explanation as simple as possible (corollary: you shouldn’t use this code as it is in a production environment. Grasp the concept and improve upon it!)
Let’s begin.
What is Thread Local?
Thread Local can be considered as a scope of access, like a request scope or session scope. It’s a thread scope. You can set any object in Thread Local and this object will be global and local to the specific thread which is accessing this object. Global and local!!? Let me explain:
- Values stored in Thread Local are global to the thread, meaning that they can be accessed from anywhere inside that thread. If a thread calls methods from several classes, then all the methods can see the Thread Local variable set by other methods (because they are executing in same thread). The value need not be passed explicitly. It’s like how you use global variables.
- Values stored in Thread Local are local to the thread, meaning that each thread will have it’s own Thread Local variable. One thread can not access/modify other thread’s Thread Local variables.
Well, that’s the concept of Thread Local. I hope you understood it (if not, please leave a comment).
When to use Thread Local?
We saw what is thread local in the above section. Now let’s talk about the use cases. i.e. when you’ll be needing something like Thread Local.
I can point out one use case where I used thread local. Consider you have a Servlet which calls some business methods. You have a requirement to generate a unique transaction id for each and every request this servlet process and you need to pass this transaction id to the business methods, for logging purpose. One solution would be passing this transaction id as a parameter to all the business methods. But this is not a good solution as the code is redundant and unnecessary.
To solve that, you can use Thread Local. You can generate a transaction id (either in servlet or better in a filter) and set it in the Thread Local. After this, what ever the business method, that this servlet calls, can access the transaction id from the thread local.
This servlet might be servicing more that one request at a time. Since each request is processed in separate thread, the transaction id will be unique to each thread (local) and will be accessible from all over the thread’s execution (global).
Got it!?
How to use Thread Local?
Java provides an ThreadLocal object using which you can set/get thread scoped variables. Below is a code example demonstrating what I’d explained above.
Lets first have the Context.java file which will hold the transactionId field.
package com.veerasundar;
public class Context {
private String transactionId = null;
/* getters and setters here */
}
Now create the MyThreadLocal.java file which will act as a container to hold our context object.
package com.veerasundar;
/**
* this class acts as a container to our thread local variables.
* @author vsundar
*
*/
public class MyThreadLocal {
public static final ThreadLocal userThreadLocal = new ThreadLocal();
public static void set(Context user) {
userThreadLocal.set(user);
}
public static void unset() {
userThreadLocal.remove();
}
public static Context get() {
return userThreadLocal.get();
}
}
In the above code, you are creating a ThreadLocal object as a static field which can be used by rest of the code to set/get thread local variables.
Let’s create our main class file which will generate and set the transaction ID in thread local and then call the business method.
package com.veerasundar;
public class ThreadLocalDemo extends Thread {
public static void main(String args[]) {
Thread threadOne = new ThreadLocalDemo();
threadOne.start();
Thread threadTwo = new ThreadLocalDemo();
threadTwo.start();
}
@Override
public void run() {
// sample code to simulate transaction id
Context context = new Context();
context.setTransactionId(getName());
// set the context object in thread local to access it somewhere else
MyThreadLocal.set(context);
/* note that we are not explicitly passing the transaction id */
new BusinessService().businessMethod();
MyThreadLocal.unset();
}
}
Finally, here’s the code for the BusinessService.java which will read from thread local and use the value.
package com.veerasundar;
public class BusinessService {
public void businessMethod() {
// get the context from thread local
Context context = MyThreadLocal.get();
System.out.println(context.getTransactionId());
}
}
When you run the ThreadLocalDemo file, you’ll get the below output:
Thread-0 Thread-1
As you might see, even though we are not explicitly passing the transaction id, the value can be accessed from the business method and printed on the console. Adding to it, the transaction ID differs for each thread (0 and 1).
Well, that’s it. I hope I’d explained it in a simple possible way. Please let me know what do you think about this article in comments. Do leave a comment if you want to add anything to this topic.

Hi! I'm Veera Sundar. I am a web application developer. I usually build the application end-to-end using Java on the back-end and JavaScript on the front end. 
{ 21 comments… read them below or add one }
It can be useful to override initialValue() e.g.
private static final ThreadLocal COUNTER = new ThreadLocal() {
public AtomicInteger initialValue() {
return new AtomicInteger();
}
};
You can call this without worring about it being set to null.
COUNTER.get().incrementAndGet()
It is worth noting that ThreadLocal is generic type, i.e. ThreadLocal. Actually I have doubt that MyThreadLocal will compile (due to type incompatibility).
Yes. ThreadLocal is a generic type. I missed to add that type inside <> but still the code compiles just fine. The output you see at the end of the post is the actual output got by running the demo code.
Thank you for your explaination! It is useful for me to understand how to user Threadlocal
Thank you for the good explanation that helped me implementing an ErrorHolder into my servlet
you are welcome, Dirk!
Hey Veera
The website layout looks cool these days
I guess you had improved upon it. The homepage is awesome!!
Which editor do you use ? The screenshots are cool!
Keep it up!
Thanks Raghavan!
I assume you are talking about the code window. Its done by using the Wordpress SyntaxHighlighter Evolved plug-in.
Hi Veera,
Yes exactly. Oh is it so? It looks awesome
Thanks Veera,
Your example was very informative. Now i can use ThreadLocal in my application.
Vikas
Thanks for nice article…:)
Nice article ..
Nice article. Thanks, Veera.
Thanks, really very useful article for starter..
Thanks for the article! Thanks especially for keeping it simple!
I still have a doubt though: Can’t i accomplish the same using an object of type Map? Is ThreadLocal just a convenience class?
Simply superb!
Very nice article to get started . Thanks
Tarundeep Batra
Really very short and useful article. Please keep it up!!!
I am new to java , thanks very much for such a detail explanation !
Best article, I have read till now for ThreadLoacl, which is simple and short.
Thanks.
Looking forward for such more articles.
Very nice article ! Simple and clean explanation..
{ 1 trackback }