I have a synchronized method in a singleton class which is called by many threads simultaneously. Is there any java API available to check which thread is currently owning the lock ?
|
|
You could perhaps print out |
|||||||||
|
|
The jvm ThreadMXBean gives you access to all kinds of thread related info, including which threads own which locks. |
|||
|
|
|
If you're simply looking into debugging the software to figure out which thread is causing the blocking and which one being blocked, I'd suggest simply getting a thread dump of the live situation. I wouldn't use this kind of logic as part of normal program flow. http://java.sun.com/developer/technicalArticles/Programming/Stacktrace/ |
|||
|
|
|
Precise answer given by
By the way,please have a look at the following link. It provides all information about thread related aspects : |
|||
|
|