简体   繁体   中英

How to increase Permgen size in eclipse

I got frequently

perm gen error
. how to increase Permgen size in eclipse. what is the way to increase Permgen space in eclipse.

You can change the size of perm gen in config or .ini file packed with eclipse.

You need to add one line

-XX:MaxPermSize=256m

at the end

You can better try -XX:MaxPermSize=128M rather than -XX:MaxPermGen=128M or

add -XX:MaxPermSize=256m

Also check Understanding and avoiding the Java Permgen Space error and Classloader leaks: the dreaded "java.lang.OutOfMemoryError: PermGen space" exception

if you use eclipse IDE than with use of it you can change the VM argument

double click on the server > open Lunch Configuration > Arguments > VM Arguments

and append below two lines in your VM Arguments field

-Xms256m -Xmx1024m -XX:+DisableExplicitGC -Dcom.sun.management.jmxremote
-XX:PermSize=256m -XX:MaxPermSize=512m

it will sure solve your problem

I test som solutions but this command is solved:

run your eclipse with this command

eclipse -vmargs -XX:PermSize=64M -XX:MaxPermSize=128M

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM