Debugging Like a Pro in Intellij

Debugging Like a Pro in Intellij

Exhausive Guide to Debug Java Application in Intellij, Must have Skill for all the Java Developer (Updated 2020)

  1. Introduction
  2. Main Basics
    1. Inline Debugger
      1. Step over :
      2. Step into :
      3. Force Step into :
      4. Step Out:
      5. Drop Frame :
      6. Show Execution Point :
      7. Run to Cursor :
    2. Breadcrumbs
  3. Other Basics
    1. Variable Pane
    2. Watches
    3. Evaluate Expression
    4. Modify code behavior without changing source
    5. Pause (when program seems stuck)
  4. Break Point
    1. More Features of Breakpoint
      1. Mute or Check all Break Point
      2. Log Rather than Suspend
      3. Group your Breakpoints
      4. Change Breakpoint Description
      5. Breakpoint on Interface (Method Breakpoint)
      6. Field Breakpoint
      7. Exception Breakpoint
  5. Working with Lambdas (Advanced)
    1. Apply Breakpoint on Lambdas
    2. Step into
    3. Stream Debugger
      1. Flat Mode
  6. Using Memory View
  7. References

Introduction

Lets face it. One of the most important part of Development has always been how Efficiently one can debug and find the Internal issues in the code, and being able to debug with the best toolset in the Industry is completely feasible with Intellij for Java Developers.

To start the Debugging Short cut : Shift + F9

There are various ways to find issues in Code primarily from

  1. Server Logs
  2. Code Bookmarks
  3. Debugging the Code

In this Article we would be covering only 3rd point i.e. using Debugging (This Document contains Exhaustive list of tool used in java Debugging and I keep it updated with any of specialized tools which comes up.)


Main Basics

Inline Debugger

In the Debug Toolbox we can find this toolbar , which is first step one should be aware of while debugging, as these are basic toolset in all languages I haven’t covered them in detail however Once you use them you will get their Use Cases.

7 basic Operations are all below.

/assets/tech/Debugging%20Your%20Code%20like%20a%20Pro%20in%20Intellij%20c146c5234603485896684e3e75ab4098/Untitled.png

Step over :

(2nd icon) used to run over the particular line , one statement at a time

Short Cut : F8

Step into :

(3rd icon) Steps into the particular method during debugging

Short Cut : F7

Force Step into :

(4th icon) In case we want to step into java api methods or library methods

Short Cut : Alt +Shift + F7

Step Out:

(5th icon) When we want to step out of a particular method.

Short Cut : Shift + F8

Drop Frame :

(6th icon) In case by mistake you went ahead from the required line , we can simply drop a frame and go back

/assets/tech/Debugging%20Your%20Code%20like%20a%20Pro%20in%20Intellij%20c146c5234603485896684e3e75ab4098/Untitled%201.png

Show Execution Point :

if you are going through code and miss where the code was execution point was during debugging , click on show Execution Point

Shortcut : Alt + F10

/assets/tech/Debugging%20Your%20Code%20like%20a%20Pro%20in%20Intellij%20c146c5234603485896684e3e75ab4098/Untitled%202.png

Run to Cursor :

To avoid going line by line , we can directly click on this and go the particular line straight away

/assets/tech/Debugging%20Your%20Code%20like%20a%20Pro%20in%20Intellij%20c146c5234603485896684e3e75ab4098/Untitled%203.png

Used to see in the IDE which particular field the cursor is pointing to , especially method or field

This is useful when working with hierarchical data like xml

/assets/tech/Debugging%20Your%20Code%20like%20a%20Pro%20in%20Intellij%20c146c5234603485896684e3e75ab4098/Untitled%204.png


Other Basics

Variable Pane

  • Shows the variables that are relevant to particular stack in Frame Section

/assets/tech/Debugging%20Your%20Code%20like%20a%20Pro%20in%20Intellij%20c146c5234603485896684e3e75ab4098/Untitled%205.png

Watches

  • To check the value of the variable in all the call stack , we can use watches
  • Multiple ways to do it
    • drag drop variable from variables tab
    • right click on variable pane and click add to watches
    • or in watches section add ‘+’

/assets/tech/Debugging%20Your%20Code%20like%20a%20Pro%20in%20Intellij%20c146c5234603485896684e3e75ab4098/Untitled%206.png

Evaluate Expression

To verify any assumptions , or test a particular statement(s) all together we can use Evaluate Expression

/assets/tech/Debugging%20Your%20Code%20like%20a%20Pro%20in%20Intellij%20c146c5234603485896684e3e75ab4098/Untitled%207.png


Modify code behavior without changing source

  • in variable pane select the variable and right click and set value
  • Behavior of the code changes

/assets/tech/Debugging%20Your%20Code%20like%20a%20Pro%20in%20Intellij%20c146c5234603485896684e3e75ab4098/Untitled%208.png

Pause (when program seems stuck)

  • if program gets stuck , one can click on PAUSE button

/assets/tech/Debugging%20Your%20Code%20like%20a%20Pro%20in%20Intellij%20c146c5234603485896684e3e75ab4098/Untitled%209.png

  • See the call stack from the debugger tab (Frame Section )

/assets/tech/Debugging%20Your%20Code%20like%20a%20Pro%20in%20Intellij%20c146c5234603485896684e3e75ab4098/Untitled%2010.png

  • To Resume : use resume button
  • To Rerun : use reRun button above Resume
  • To Stop debugging your program : Stop button

Break Point

  • Breakpoints are there to stop the execution of a program. Add breakpoint in the gutter area

/assets/tech/Debugging%20Your%20Code%20like%20a%20Pro%20in%20Intellij%20c146c5234603485896684e3e75ab4098/Untitled%2011.png

  • Click on breakpoint to set conditions of when to execute

/assets/tech/Debugging%20Your%20Code%20like%20a%20Pro%20in%20Intellij%20c146c5234603485896684e3e75ab4098/Untitled%2012.png

  • We can Enable or Disable the particular break point

More Features of Breakpoint

Mute or Check all Break Point

/assets/tech/Debugging%20Your%20Code%20like%20a%20Pro%20in%20Intellij%20c146c5234603485896684e3e75ab4098/Untitled%2013.png

Log Rather than Suspend

  • Right click on breakpoint and click on more
  • rather than suspending the program we can log the breakpoint
  • Note: color of such breakpoints will change

/assets/tech/Debugging%20Your%20Code%20like%20a%20Pro%20in%20Intellij%20c146c5234603485896684e3e75ab4098/Untitled%2014.png

Output would be visible in the debug window

/assets/tech/Debugging%20Your%20Code%20like%20a%20Pro%20in%20Intellij%20c146c5234603485896684e3e75ab4098/Untitled%2015.png

Group your Breakpoints

  • Usually we want to group breakpoints for a particular purpose , this can be done in view all breakpoints then click on particular one to group it to respective groups.

/assets/tech/Debugging%20Your%20Code%20like%20a%20Pro%20in%20Intellij%20c146c5234603485896684e3e75ab4098/Untitled%2016.png

Change Breakpoint Description

  • In the same screen while grouping , there is also option to ‘edit Description’ this allows user to provide custom information.

Breakpoint on Interface (Method Breakpoint)

  • When we use breakpoint on particular method on interface, it stops at whichever implementation gets hit
  • there is change in breakpoint symbol (its a method breakpoint)

/assets/tech/Debugging%20Your%20Code%20like%20a%20Pro%20in%20Intellij%20c146c5234603485896684e3e75ab4098/Untitled%2017.png

  • We can specify when do we want to stop our breakpoint, method entry , exit or both

/assets/tech/Debugging%20Your%20Code%20like%20a%20Pro%20in%20Intellij%20c146c5234603485896684e3e75ab4098/Untitled%2018.png

  • hence we can also put breakpoints on interfaces like Runnable method ‘run’ . this would help to identify which method got called

Field Breakpoint

  • if we are checking for a particular field value , instead of checking all the methods that modify that particular field we can directly put the breakpoint on it.
  • the symbol of breakpoint is updated here as shown below
  • we can also select when it should trigger , while its ‘accessed’ , ‘modified’ or both

/assets/tech/Debugging%20Your%20Code%20like%20a%20Pro%20in%20Intellij%20c146c5234603485896684e3e75ab4098/Untitled%2019.png

Exception Breakpoint

  • we can select particular exception and find exact where and when its thrown using this
  • Select Java Exception Breakpoint

/assets/tech/Debugging%20Your%20Code%20like%20a%20Pro%20in%20Intellij%20c146c5234603485896684e3e75ab4098/Untitled%2020.png

  • Select you particular exception
  • And hence we would be able to ‘pause’ before that exception is thrown , we can also see the values being passed in the editor pane

/assets/tech/Debugging%20Your%20Code%20like%20a%20Pro%20in%20Intellij%20c146c5234603485896684e3e75ab4098/Untitled%2021.png

Working with Lambdas (Advanced)

Apply Breakpoint on Lambdas

  • on Clicking set breakpoint , IDE will ask for which particular operation you want to apply debugger , we can select all , or particular lambda operator

/assets/tech/Debugging%20Your%20Code%20like%20a%20Pro%20in%20Intellij%20c146c5234603485896684e3e75ab4098/Untitled%2022.png

  • this would allow you to test particular expression inside a lambda

/assets/tech/Debugging%20Your%20Code%20like%20a%20Pro%20in%20Intellij%20c146c5234603485896684e3e75ab4098/Untitled%2023.png

Step into

  • Press step into , this will highlight all the possible places in lambda where error can occur

/assets/tech/Debugging%20Your%20Code%20like%20a%20Pro%20in%20Intellij%20c146c5234603485896684e3e75ab4098/Untitled%2024.png

  • Select the particular value and then , keep pressing Step into to iterate through all the values

Stream Debugger

  • One can Debug the Streams much better using Stream debugger
  • Just click the button , when you reach the particular point

/assets/tech/Debugging%20Your%20Code%20like%20a%20Pro%20in%20Intellij%20c146c5234603485896684e3e75ab4098/Untitled%2025.png

  • Check how it gets exactly converted

/assets/tech/Debugging%20Your%20Code%20like%20a%20Pro%20in%20Intellij%20c146c5234603485896684e3e75ab4098/Untitled%2026.png

Flat Mode

  • Click on flat mode to check all the operations at once
  • you can also select particular value to see the operations done on the particular one.

/assets/tech/Debugging%20Your%20Code%20like%20a%20Pro%20in%20Intellij%20c146c5234603485896684e3e75ab4098/Untitled%2027.png

Using Memory View

  • we can track in memory how many times a particular call has been executed
    • if used wisely turns very helpful in finding the objects and instances in memory
  • this can be done by using debugger memory view section
  • Make sure the memory section has been enabled
  • Load Classes

/assets/tech/Debugging%20Your%20Code%20like%20a%20Pro%20in%20Intellij%20c146c5234603485896684e3e75ab4098/Untitled%2028.png

  • Click on particular class , e.g. java.lang.String
  • now check with ‘equals’ or any method to check the objects of that class

/assets/tech/Debugging%20Your%20Code%20like%20a%20Pro%20in%20Intellij%20c146c5234603485896684e3e75ab4098/Untitled%2029.png

References

Debugging Basics Youtube Link from Intellij

https://www.youtube.com/watch?v=lAWnIP1S6UA

Advanced Debugging Features

https://www.youtube.com/watch?v=AOrnx-9zNBQ


© 2024. All rights reserved.

Powered by Hydejack v9.2.1