How to visualize data during debugging?

I need to check out some visual aspects of my application, let's say the correct form. Eclipse is unable to watch except toString(). So, I need to get back to the old good debug hooks. So, I wrote a standalone class that displays objects of this type, but I still can not use it. If I put it in code, then it freezes when the breakpoint is.

Is it possible to transfer objects somewhere to a separate class loader or JVM or something like that so that I can inspect it interactively?

+4
source share
1 answer

, Eclipse

0

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


All Articles