安装 Memory Analyzer
1>下载
http://www.eclipse.org/mat/downloads.php
2>安装
获得堆转储文件
//查看 tomcat pid ps -elf|grep tomcat
// return 5183
// jmap 位于 java_home/bin/目录
jmap -dump:format=b,file=heap.bin 5183
查看heap.bin文件
Eclise --> Eclipse==>Open File 选择 heap.bin
时间: 2024-09-20 20:40:28