码迷,mamicode.com
首页 > 编程语言 > 详细

java.lang.OutOfMemoryError : GC overhead limit exceeded解决方案

时间:2020-07-16 21:48:15      阅读:310      评论:0      收藏:0      [点我收藏+]

标签:limit   bsp   style   serve   div   xms   完成   tin   cache   

IntelliJ IDEA  启动一个之前运行正常的项目失败,报错是:

java.lang.OutOfMemoryError : GC overhead limit exceeded

百度了一下,说是 IntelliJ IDEA 设置的内存太小,需要设置大一点。修改完成后,果然可以运行了,这里记录一下。

IntelliJ IDEA 中修改如下配置:

1、 File -> Settings -> Build,Execution,Deployment -> Complier 

       设置【Build process heap size(Mbytes)】 为 2000

2、File -> Settings -> Build,Execution,Deployment ->Build Tools -> Maven -> Importing 

       设置【VM options for importer】为 -Xmx1024m

进入 IntelliJ IDEA  的安装目录,找到文件 【idea64.exe.vmoptions】(如果是32位机器,修改【idea.exe.vmoptions】文件),修改配置为:

-Xms1024m
-Xmx2048m
-XX:ReservedCodeCacheSize=1024m

 

java.lang.OutOfMemoryError : GC overhead limit exceeded解决方案

标签:limit   bsp   style   serve   div   xms   完成   tin   cache   

原文地址:https://www.cnblogs.com/daochangone/p/13324487.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!