Breakpoint Properties in Eclipse
The Eclipse IDE has the ability to run the code interactively, executing an application line by line in debug mode where you can define a specify point in the code to stop, called a breakpoint. As you can see in Eclipse documentation:
But when you are debugging an application, sometimes, you don't want the application to stop everytime in the breakpoint. For example, in a loop where the code iterates through a lot of object.
The solution for these situations is conditional breakpoint. To set a conditional breakpoint, right-click on breakpoint in the left hand side and click "breakpoint properties.." in Eclipse.

After that you'll see the following screen:

You set a condition in a breakpoint so that it will stop at this point when the condition is true. In this example, the application will be suspend when the request's method is "POST".
There are others options to set a condition in the breakpoint, for example, the count of hit the application.
So, that's it. Did you know about this tip or any other interesting features in Eclipse?
"A breakpoint suspends the execution of a program at the location where the breakpoint is set".
But when you are debugging an application, sometimes, you don't want the application to stop everytime in the breakpoint. For example, in a loop where the code iterates through a lot of object.
The solution for these situations is conditional breakpoint. To set a conditional breakpoint, right-click on breakpoint in the left hand side and click "breakpoint properties.." in Eclipse.

After that you'll see the following screen:

You set a condition in a breakpoint so that it will stop at this point when the condition is true. In this example, the application will be suspend when the request's method is "POST".
There are others options to set a condition in the breakpoint, for example, the count of hit the application.
So, that's it. Did you know about this tip or any other interesting features in Eclipse?
(3 votes)
Tags:
Published at DZone with permission of its author, Valdemar Júnior.(Note: Opinions expressed in this article and its replies are the opinions of their respective authors and not those of DZone, Inc.)





Comments
Nirav Purohit replied on Mon, 2011/03/14 - 12:31pm
Valdemar Júnior replied on Sun, 2011/03/20 - 12:52pm
in response to: niravpurohit
Javin Paul replied on Fri, 2011/04/08 - 10:01am
Conditional breakpoint is really powerful feature eclipse offered and i have used it a lot during my project particularly useful if you want to stop execution only for a particluar thread or a particular condition. See my blog post Java and eclipse remote deubgging for more debugging tips.