peez80
peez80

Reputation: 1643

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.

Upvotes: 15

Views: 2311

Answers (1)

vikingsteve
vikingsteve

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

Related Questions