vote up 0 vote down star
1

I am getting a PermGen Space Exception whenever I deploy my web application. I tried some JVm option in NetBeans but still unable to resolve the issue.

flag

74% accept rate
You should take a look at the questions already asked in this regard. 1) stackoverflow.com/questions/88235/… 2) stackoverflow.com/questions/473011/… Then it is only a matter of configuring the Tomcat installation in Netbeans. – Vineet Reynolds Sep 3 at 6:29

1 Answer

vote up 0 vote down check

Add this JVM parameter: -XX:MaxPermSize=128m (or 256m or 512m). Here's a related article as well that lists some other useful JVM options.

link|flag
thanks for your reply, i tried this option,but still showing the same issue. – vipin k. Sep 3 at 6:36
Did you try the other options as well in the article (-XX:+UseConcMarkSweepGC, -XX:+CMSPermGenSweepingEnabled, -XX:+CMSClassUnloadingEnabled)? – Taylor L Sep 3 at 6:51

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.