欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  科技

eclipse打开提示PermGen space异常该怎么办?

程序员文章站 2023-12-11 10:50:40
eclipse打开提示PermGen space异常该怎么办?...

最近使用eclipse做开发,使用的服务器是tomcat,但在启动时报了caused by: java.lang.outofmemoryerror: permgen space的异常。这个错误很常见,于是配置tomcat下的catalina.bat,配置eclipse.ini,各种方法都用过了,不管用!花了好长时间,在几近崩溃的时候找到了下面的解决办法,终于解决了。为了不走弯路,我把三种方法都写写,我用的是第三种方法才解决的。

eclipse打开提示PermGen space异常该怎么办?

第一种方法:

1、修改eclipse的run configurations。

2、点击“run”-"run configurations",在打开的窗口中点击“arguments”选项卡。

eclipse打开提示PermGen space异常该怎么办?

eclipse打开提示PermGen space异常该怎么办?

3、在vm arguments中内容最下边输入:

-xms256m -xmx512m -xx:maxnewsize=256m -xx:maxpermsize=256m

eclipse打开提示PermGen space异常该怎么办?

4、保存后再次重启后已经不再报错了。

第二种方法:

1、修改tomcat/bin目录下的catalina.bat。

eclipse打开提示PermGen space异常该怎么办?

2、在“rem ----- execute the requested command ----------------------”下加入

java_opts="-server -xms800m -xmx800m -xxnewsize=256m -xx:permsize=256m -xx:maxnewsize=512m -xx:maxpermsize=512m"

这种方法在只使用tomcat时管用,但使用eclipse时不管用。

eclipse打开提示PermGen space异常该怎么办?

第三种方法:

1、修改eclipse.ini。

eclipse打开提示PermGen space异常该怎么办?

2、加入