The What and Why of fixing java.lang.OutOfMemoryError: PermGen space
The permanent generation is the area of heap that holds all the reflective data of the virtual machine itself, such as class and method objects (also called “method area” in The Java Virtual Machine Specification).
Translation: PermGen holds the information that makes the JVM work.
Why do you care?
If an application loads “too […]