MAT下载安装:
1.下载独立MAT:下载地址:http://www.eclipse.org/mat/downloads.php
2.在eclipse中安装插件
MAT分析的是hprof文件,hprof文件记录了JVM内存溢出时的堆信息,通过分析该文件我们可以分析溢出原因。
JVM参数配置:
-Xms10M -Xmx10M -XX:+HeapDumpOnOutOfMemoryError
运行内存设置小一点,为了方便测试效果。
public static void main(String[] args) throws InterruptedException { List<String> list = new ArrayList<>(); for (int i = 0; i < 10000; i++) { String str = ""; for (int j = 0; j <1000 ; j++) { str = str + UUID.randomUUID().toString(); } list.add(str); } System.out.println("完成内存溢出测试"); }
执行出错,内存溢出。相应的hprof文件保存在项目相应的路径下。
java.lang.OutOfMemoryError: Java heap space
Dumping heap to java_pid29396.hprof ...
Heap dump file created [8586341 bytes in 0.109 secs]
Exception in thread "main" java.lang.OutOfMemoryError: Java heap space
at java.util.Arrays.copyOf(Arrays.java:3332)
at java.lang.AbstractStringBuilder.ensureCapacityInternal(AbstractStringBuilder.java:124)
at java.lang.AbstractStringBuilder.append(AbstractStringBuilder.java:448)
at java.lang.StringBuilder.append(StringBuilder.java:136)
at com.example.springbootselflearning.test.Test1.main(Test1.java:64)
解压MAT安装包,双击MemoryAnalyzer.exe,打开java_pid29396.hprof文件
选择File-》Open heap dump,选择java_pid29396.hprof文件