通过设置-XX:+HeapDumpOnOutOfMemoryError 自动生成dump文件,进行分析内存溢出原因
1、堆溢出
堆溢出原因莫过于对象太多导致。
错误:java.lang.OutOfMemoryError: Java heap space
2.栈溢出
如果线程请求的栈深度大于虚拟机所允许的最大深度,将抛出StackOverflowError
如果虚拟机在扩展栈时无法申请到足够的内存空间,将抛出OutOfMemoryError。比如java.lang.OutOfMemoryError: unable to create new native thread
3、方法区溢出
当运行时常量池过大或者类过多时就会导致方法区溢出。
错误java.lang.OutOfMemoryError: PermGen space
4.直接内存溢出
虽然使用DerictByteBuffer分配内存也会抛出内存溢出异常,但它抛出异常时并没有真正向操作系统申请分配,而是通过计算得知内存无法分配,于是手动抛出异常,真正申请分配内存的方法是unsafe.allocateMemory()。
错误:
java.lang.OutOfMemoryError
at sun.misc.Unsafe.allocateMemory