Arthas

官网

//常用命令
thread
thread -n 3
dashbord
jad
//实例
jad com.example.controller.TestController

插件下载
Arthas_第1张图片

//监听
watch
watch com.example.controller.TestController request '{params,returnObj,throwExp}'  -n 5  -x 3 
//耗时
trace
trace com.example.controller.TestController list  -n 5 --skipJDKMethod false 
//输出当前方法被调用的调用路径
stack
stack com.example.controller.TestController list  -n 5 
//方法执行监控
monitor
monitor com.example.controller.TestController list  -n 10  --cycle 10 
//查看死锁
thread -b
//时空隧道
tt
tt -t com.example.controller.TestController list -n 5 
tt -i 1000
tt -i 1000 -p

在这里插入图片描述
热更新
#将容器中的文件拷贝出来
sudo docker cp 容器ID:/etc/mysql/my.cnf /home/tom/
#将容器中的文件拷贝回去
sudo docker cp /home/tom/my.cnf 容器ID:/etc/mysql/
热更新

你可能感兴趣的:(Java,arthas)