Reputation: 1643
Does IntelliJ have a feature similar/like "Use Step Filters" in Eclipse for debugging?
I'm new to IntelliJ and would like to avoid jumping into hibernate or jboss proxy classes.
Upvotes: 15
Views: 2311
Reputation: 40428
You can define the Do not step into the classes list here:
Settings
-> Build, Execution, Deployment
-> Debugger
-> Stepping
Just add things like org.hibernate.*
to the list.
Upvotes: 15