Breakpoint Properties in Eclipse
Breakpoint Properties in Eclipse
Join the DZone community and get the full member experience.
Join For FreeTake 60 minutes to understand the Power of the Actor Model with "Designing Reactive Systems: The Role Of Actors In Distributed Architecture". Brought to you in partnership with Lightbend.
" 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?
Learn how the Actor model provides a simple but powerful way to design and implement reactive applications that can distribute work across clusters of cores and servers. Brought to you in partnership with Lightbend.
Opinions expressed by DZone contributors are their own.
{{ parent.title || parent.header.title}}
{{ parent.tldr }}
{{ parent.linkDescription }}
{{ parent.urlSource.name }}