Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Debugger step filters in IntelliJ?

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.

like image 660
peez80 Avatar asked Jan 12 '15 12:01

peez80


1 Answers

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.

like image 136
vikingsteve Avatar answered Sep 28 '22 02:09

vikingsteve