How to debug our application for issues when multiple threads are being executed?

Submitted by: Administrator
Following are some way to debug issues in multi-threaded applications in Java.

-By using logging and print statements along with thread names. In this way we can know about the flow of thread execution.
-With the use of debugging functionality available in Eclipse and JDeveloper.
-We can write a thread dump of the application which will give the information about the active threads at a point of time.

This is most effective way for detecting deadlocks in production systems.
Submitted by: Administrator

Read Online Java Multi-Threading Job Interview Questions And Answers