Tagged Questions

12
votes
4answers
1k views

Significance of PermGen Space

What is the significance of PermGen space in java?
5
votes
1answer
361 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
893 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
1answer
101 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
113 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 ...