Thursday 14 March 2013

Java Debugging with Eclipse

Leave a Comment

1. Overview

1.1. What is debugging?

Debugging allows you to run a program interactively while watching the source code and the variables during the execution.
Via breakpoints in the source code you specify where the execution of the program should stop. To stop the execution only if a field is read or modified, you can specify watchpoints.
Breakpoints and watchpoints can be summarized as stop points.
Once the program is stopped you can investigate variables, change their content, etc.

1.2. Debugging support in Eclipse

Eclipse allows you to start a Java program in Debug mode.
Eclipse has a special Debug perspective which gives you a preconfigured set of views. In this perspective you control the execution process of your program and can investigate the state of the variables.

2. Prerequisites

The following assumes you know how to develop simple standard Java programs. This article will focus on how to debug Java applications in Eclipse.
The installation and usage of Eclipse as Java IDE is described in Eclipse Java IDE Tutorial .
 
 3. Debugging in Eclipse

3.1. Setting Breakpoints

To set breakpoints in your source code right-click in the small left margin in your source code editor and select Toggle Breakpoint. Alternatively you can double-click on this position.

Setting a breakpoint

For example in the following screenshot we set a breakpoint on the line Counter counter = new Counter();.

Showing a defined breakpoint

3.2. Starting the Debugger

To debug your application, select a Java file which can be executed, right-click on it and select Debug AsJava Application.

Start the debugger


After you have started the application once via the context menu, you can use the created launch configuration again via the Debug button in the the Eclipse toolbar.

Debug button


If you have not defined any breakpoints, this will run your program as normal. To debug the program you need to define breakpoints.
If you start the debugger, Eclipse asks you if you want to switch to the Debug perspective once a stop point is reached. Answer Yes in the corresponding dialog.



Afterwards Eclipse opens this perspective, which looks similar to the following screenshot.

Switch to perspective

3.3. Controlling the program execution

Eclipse provides buttons in the toolbar for controlling the execution of the program you are debugging. Typically it is easier to use the corresponding keys to control this execution. 

You can use the F5, F6, F7 and F8 key to step through your coding. The meaning of these keys is explained in the following table. 

Table 1. Debugging Key bindings
Key Description
F5 Executes the currently selected line and goes to the next line in your program. If the selected line is a method call the debugger steps into the associated code.
F6 F6 steps over the call, i.e. it executes a method without entering it in the debugger.
F7 F7 goes to the caller of the currently executed method. This finishes the execution of the current method and returns to the caller of this method.
F8 F8 tells the Eclipse debugger to continue to execute the program code until is reaches the next breakpoint or watchpoint.


The following picture displays the buttons and their related keyboard shortcuts.

Debug Shortcuts


The call stack shows the parts of the program which are currently executed and how they relate to each other. The current stack is displayed in the Debug view.

Showing the stack view

 

3.4. Breakpoint view and deactivating breakpoints

The Breakpoints view allows you to delete and deactivate stop points, i.e. breakpoints and watchpoints and to modify their properties.
To deactivate a breakpoint, remove the corresponding checkbox in the Breakpoints view. To delete it you can use the corresponding buttons in the view toolbar. These options are depicted in the following screenshot.

Breakpoint view

If you want to deactivate all your breakpoints you can press the Skip all breakpoints button. If you press it again, your breakpoints are reactivated. This button is highlighted in the following screenshot.

De-activating all breakpoints

 

3.5. Evaluating variables in the debugger

The Variables view displays fields and local variables from the current executing stack. Please note you need to run the debugger to see the variables in this view.

Variables View

Use the drop-down menu to display static variables.

Drop-down menu for static variables


Via the drop-down menu of the Variables view you can customize the displayed columns. For example, you can show the actual type of each variable declaration. For this select LayoutSelect Columns...Type.

Showing the actual type of the variables

3.6. Changing variable assignments in the debugger

The Variables view allows you to change the values assigned to your variable. This is depicted in the following screenshot.

Changing the value of a variable

 

3.7. Controlling the display of the variables with Detail Formatter

By default the Variables view uses the toString() method to determine the display of a variable.
You can define a Detail Formatter in which you can use Java code to define how a variable is displayed.
For example the toString() method in the Counter class may show meaningless information, e.g. de.vogella.combug.first.Counter@587c94. To make this output more readable you can right-click on the corresponding variable and select the New Detail Formater entry from the context menu.

New Detail Formater Screenshot


Afterwards you can use a method of this class to determine the output. In this example the getResult() method of this class is used. This setup is depicted in the following screenshot.

Detailled formater example

4. Advanced Debugging

The following section shows more options you have for debugging.

4.1. Breakpoint Properties

After setting a breakpoint you can select the properties of the breakpoint, via right-clickBreakpoint Properties. Via the breakpoint properties you can define a condition that restricts the activation of this breakpoint.
You can for example specify that a breakpoint should only become active after it has reached 12 or more times via the Hit Count property.
You can also create a conditional expression. The execution of the program only stops at the breakpoint, if the condition evaluates to true. This mechanism can also be used for additional logging, as the code that specifies the condition is executed every time the program execution reaches that point.
The following screenshot depicts this setting. 


Breakpoint Properties


Breakpoint Properties

4.2. Watchpoint

A watchpoint is a breakpoint set on a field. The debugger will stop whenever that field is read or changed.
You can set a watchpoint by double-clicking on the left margin, next to the field declaration. In the properties of a watchpoint you can configure if the execution should stop during read access (Field Access) or during write access (Field Modification) or both.

Watchpoint

4.3. Breakpoints for Exceptions

You can set breakpoints which are triggered when exceptions in your Java source code are thrown. To define an exception breakpoint click on the Add Java Exception Breakpoint button icon in the Breakpoints view toolbar.

Exception Breakpoint

You can configure if the debugger should stop at caught or uncaught exceptions.

4.4. Method Breakpoint

A method breakpoint is defined by double-clicking in the left margin of the editor next to the method header.
You can configure if you want to stop the program before entering or after leaving the method.

Method Breakpoint

4.5. Breakpoints for loading classes

A class load breakpoint stops when the class is loaded.
To set a class load breakpoint, right-click on a class in the Outline view and choose the Toggle Class Load Breakpoint option.

Toogle class load breakpoint

Alternative you can double-click in the left border of the Java editor beside the class definition.

4.6. Step Filter

You can define that certain packages should be skipped in debugging. This is for example useful if you use a framework for testing but don't want to step into the test framework classes. These packages can be configured via the WindowPreferencesJavaDebugStep Filtering menu path.

4.7. Hit Count

For every breakpoint you can specify a hit count in its properties. The application is stopped once the breakpoint has been reached the number of times defined in the hit count.

4.8. Drop to frame

Eclipse allows you to select any level (frame) in the call stack during debugging and set the JVM to restart from that point.
This allows you to rerun a part of your program. Be aware that variables which have been modified by code that already run will remain modified.
To use this feature, select a level in your stack and press the Drop to Frame button in the toolbar of the Debug view.

Note

Fields and external data may not be affected by the reset. For example if you write a entry to the database and afterward drop to a previous frame, this entry is still in the database.
The following screenshot depicts such a reset. If you restart your for loop, the field result is not set to its initial value and therefore the loop is not executed as without resetting the execution to a previous point.


5. Exercise: Create Project for debugging

5.1. Create Project

To practice debugging create a new Java project called de.vogella.combug.first. Also create the package de.vogella.combug.first and create the following classes.

package de.vogella.combug.first;

public class Counter {
  private int result = 0;

  public int getResult() {
    return result;
  }

  public void count() {
    for (int i = 0; i < 100; i++) {
      result += i + 1;
    }
  }
} 


package de.vogella.combug.first;

public class Main {
  
/** * @param args */
public static void main(String[] args) { Counter counter = new Counter(); counter.count(); System.out.println("We have counted " + counter.getResult()); } }

5.2. Debugging

Put a breakpoint in the Counter class. Debug your program and follow the execution of the count method.
Define a Detailed Formatter for your Counter which uses the getResult method. Debug your program again and verify that your new formatter is used.
Delete your breakpoint and add a breakpoint for class loading. Debug your program again and verify that the debugger stops if your class is loaded. 


Via[Vogella]

0 comments:

Post a Comment