mirror of
https://github.com/alibaba/arthas.git
synced 2024-04-21 10:21:39 +00:00
414 B
414 B
The vmtool command can search object in JVM.
vmtool --action getInstances --className demo.MathGame --limit 10{{exec}}
Calling an instance method
Viewing the source code of a class
jad demo.MathGame{{exec}}
Calling an instance method
vmtool --action getInstances --className demo.MathGame --express 'instances[0].primeFactors(3)' -x 3{{exec}}