Remote debugging without source code

I connect to remote jvm and debug it. Some classes are generated at runtime, and an eclipse cannot go through such classes.

How can I debug such classes without source code? I want to at least be able to execute the bytecode of such classes.

thank

+3
source share
1 answer

I suggest Btrace , BTrace can be used to dynamically trace a Java executable (similar to DTrace for OpenSolaris applications and OS). BTrace dynamically applies the target application classes to add trace code ("bytecode trace").

btrace script, , jvm Btrace.

Java .

+3

All Articles