个人笔记,主键补充。
arthas里的内置对象(关键字)
loader
clazz
method
target
params
returnObj
throwExp
isBefore
isThrow
isReturn
01、查看某个方法的参数、返回值、抛出的异常。
watch 全类名 方法名 returnObj // 查看方法的返回值
watch 全类名 方法名 '{params, throwExp}' -e
// 查看参数和异常,方法名支持 通配符 *,-e表示只捕获抛出异常时的请求,后面还以跟 -x 2,-x表示“对象层级”。
02、设置输出json格式。
options json-format true //设置以json格式输出。