Java 堆内存分析
mat 使用 https://www.cnblogs.com/AloneSword/p/3821569.html
优秀博客关于堆溢出分析(也是根据葛一鸣的《实战Java虚拟机》的堆分析) https://blog.csdn.net/lhn1234321/article/details/79234845
jvm 运行参数设置
用于分析的hprof 文件生成 分析文件工具 MAT(Memory Analyzer Tool)
-Dfile.encoding=UTF-8
-Xms20m -Xmx20m
-XX:+HeapDumpOnOutOfMemoryError
-XX:HeapDumpPath=C:Users525238Desktop #如果堆溢出后生成的hprof文件路径
-XX:SurvivorRatio=8
如果用到jconsole 提示不安全的连接 那么加入以下jvm参数
-Xmx1024m -Xms1024m
-Dcom.sun.management.jmxremote
-Dcom.sun.management.jmxremote.port=8011 -Dcom.sun.management.jmxremote.ssl=false -Dcom.sun.management.jmxremote.authenticate=false