java.lang.OutOfMemoryError: GC overhead limit exceeded

错误代码:

java.lang.OutOfMemoryError: GC overhead limit exceeded

原因分析:

该错误为JDK6新增错误类型。当GC为释放很小空间占用大量时间时抛出。
一般是因为堆太小,导致异常的原因:没有足够的内存。

解决办法:

首先查看系统是否有使用大内存的代码或死循环,然后可以通过调整如下参数来解决:

  1. JVM opts 中增加heap值,如: -Xmx2048m 或者更大(注意32位、64位版本)
  2. JVM的启动参数中限制使用该参数(默认启用):-XX:-UseGCOverheadLimit

原创文章,转载请注明: 转载自micmiu – 软件开发+生活点滴[ http://www.micmiu.com/ ]

本文链接地址: http://www.micmiu.com/exception/error-gc-overhead-limit/

发表评论?

0 条评论。

发表评论


注意 - 你可以用以下 HTML tags and attributes:
<a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code class="" title="" data-url=""> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong> <pre class="" title="" data-url=""> <span class="" title="" data-url="">