How to ignore automatically generated classes in eclipse debugger?

How to ignore automatically generated classes in eclipse debugger? classes such as cglib proxy class, java helps generated classes. EJB3 and EJB2 generated classes. I want the debugger to show only those classes that have a source.

+4
source share
1 answer

This was asked several times, and I never saw or found a way to explicitly not switch to other src files if you "enter" the platform code.

Think about it. You will need to get around this or create additional breakpoints that will allow you to β€œresume” the platform code and return to your code. Clear.

IMHO, creating plugins and software workarounds for such things is not the case, because it eliminates the need to create the right knowledge as an experienced debugger who knows how to use the toolbox correctly

+1
source

Source: https://habr.com/ru/post/1394632/


All Articles