Tagged Questions

12
votes
4answers
1k views

Significance of PermGen Space

What is the significance of PermGen space in java?
5
votes
1answer
383 views

Is java PermGen space part of the total VM memory?

Assuming I start my java VM with the following parameters: -Xms1024m -Xmx1024m -XX:PermSize=512m -XX:MaxPermSize=512m Do the 512m PermGen space add to the 1024m memory or are they part of it? Or in ...
3
votes
3answers
71 views

Method Area and PermGen

I was trying to understand the memory structure of HotSpot JVM and got confused with the two terms 'Method Area' and 'PermGen' space. The docs I referred say that Method Area contains the definition ...
3
votes
3answers
910 views

jBoss 4.0.2 deploying same WAR multiple times causes jBoss to crash because of PermGem/Out-of-Memory Errors

I develop web applications and I use jBoss 4.0.2 and when I have redeployed my WAR several times with eclipse, jBoss will crash because it runs out of memory. And when I have to install new version to ...
1
vote
2answers
21 views

Redeploying a Grails App using Jenkins on Tomcat fills PermGen Space

Currently we are having various problems with the deployment of our Grails application on Tomcat 6, mainly it's about memory usage issues and redeployment via Jenkins. The Application eats more and ...
1
vote
1answer
106 views

Determine size of single Java class definition in PermGen space?

How do I determine how large a single, specific class definition (not the instantiated object) is? Specifically, how much PermGen memory does a given class use? If it cannot be calculated, how roughly ...
0
votes
2answers
115 views

Does .NET have something like Java's permgen?

So I've got a pretty standard spring, hibernate, tomcat environment.. yet I'm getting permgens locally and on CI. I know there is a TEMPORARY fix (i.e. increasing the memory assigned to permgen) but ...