mirror of https://github.com/alibaba/arthas.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
414 B
Markdown
14 lines
414 B
Markdown
2 years ago
|
The [vmtool command](https://arthas.aliyun.com/en/doc/vmtool.html) 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}}
|