IntelliJ IDEA Tips & Tricks

Unfreeze Your Apps

There are a lot of debugger tutorials out there that teach you how to set line breakpoints, log values, or evaluate expressions. While this knowledge alone gives you a lot of tools for debugging your application, real-world scenarios may be somewhat trickier and require a more advanced approach.

In this article, we will look at how to locate code without much prior knowledge of the project structure and APIs, debug hanging applications, and fix faulty code on the fly.

The problem

If you want to follow along, start by cloning this repository:
https://github.com/flounder4130/debugger-example

Suppose you have a complex application that hangs when you perform some action. You know how to reproduce the bug, but the difficulty is that you don’t know which part of the code is in charge of this functionality.

UI freezes when you click Button N

In our example app, the hanging happens when you click Button N. However, it is not so easy to find the code that runs when you do that:

Find in Path yields no results when searching for Button N

Let’s see how we can use the debugger to find it.

Method breakpoints

The advantage of method breakpoints over line breakpoints is that they can be used on entire hierarchies of classes. How is this useful in our case?

If you look at the example project, you’ll see that all action classes are derived from the Action interface with a single method: perform().

Method breakpoint is set at the perform() interface method

Setting a method breakpoint in this interface method will suspend the application whenever one of the derived methods is called. To set a method breakpoint, just click the line that declares the method.

Now start the debugger session and click Button N. The application gets suspended in ActionImpl14. Now we know that this is where the code corresponding to this button is located.

The application is suspended in the implementation of the interface.

Though in this article we are focused on finding the bug, this technique can also save you a lot of time when you want to understand how something works in a large codebase.

Pause application

The approach using method breakpoints works well, but it is based on the assumption that we know something about the parent interface. What if this assumption is wrong, or we cannot use this approach for some other reason?

Well, we can even do it without breakpoints. Click Button N, and while the application is hanging, go to IntelliJ IDEA. From the main menu, select Run | Debugging Actions | Pause Program.

You can examine threads in the Debugger tab

The application will be suspended, and we can examine the current state of the threads in the Debugger tab. This gives us an understanding of what the application is doing at the moment. Since it is hanging, we can identify the hanging method and trace back to the call site.

This approach has some advantages over a more traditional thread dump, which we’ll cover shortly. For example, it gives you information about variables and reflects the current state of the application, allowing you to resume it at any time.

Thread dumps

Finally, we can use a thread dump, which is not strictly a debugger feature. It is also available when just running the application.

Click Button N, and while the application is hanging, go to IntelliJ IDEA. From the main menu, select Run | Debugging Actions | Get Thread Dump.

Scan through the available threads on the left, and in AWT-EventQueue you’ll see what is causing the problem.

Thread dump in the Debugger tool window

The downside of thread dumps is that they only provide a snapshot of the program state at the time when they were made. You can’t use thread dumps to explore variables or control the program’s execution.

In our example, we don’t need to resort to a thread dump. However, we still wanted to mention this technique as it may be useful in other cases, like when you are trying to debug an application that has been launched without the debug agent.

Understanding the issue

Regardless of the method used, we arrive at ActionImpl14. In this class, someone intended to perform the work in a separate thread, but confused Thread.start() with Thread.run(), which runs the code in the same thread as the calling code.

IntelliJ IDEA’s static analyzer even warns us about this at design time:

An inspection warns about suspicious call to Thread.run()

A method that does heavy lifting (or heavy sleeping in this case) is called on the UI thread and blocks it until it finishes. That’s why we cannot do anything in the UI for some time after we click Button N.

HotSwap

Now that we’ve discovered the cause of the bug, let’s fix the issue.

We could stop the program, recompile the code, and then rerun it. However, it is not always convenient to redeploy the entire application just because of a small change.

Let’s do it the smart way. First, correct the code:

Correcting the code in the editor

After the code is good to go, click Run | Debugging Actions | Reload Changed Classes. A balloon appears, confirming that the new code has made its way to the VM.

A balloon appears at the Debugger tool window tab.

Let’s go back to the application and check. Clicking Button N no longer hangs the app.

Keep in mind that HotSwap has its limitations. There are tools like DCEVM or JRebel that offer extended HotSwap capabilities. If you are interested, you can read more about them.

Summary

Using our reasoning and a couple of debugger features, we were able to locate the code that was causing a UI freeze in our project. We also learned how the Pause feature and thread dumps can be useful in cases where an app is not responding. Finally, we fixed the code without wasting any time on recompilation and redeployment, which can be lengthy in real-world projects.

In this article, we just scratched the surface of how the debugger can be useful beyond a classic Hello World case. If you are interested in any particular topic related to the debugger or other IntelliJ IDEA features, let us know in the comments and feel free to peruse the documentation.

Happy developing, and stay tuned for more!

image description