Reputation: 1
When I integrate Jprobe with weblogic and run it by increasing the heap memory I am getting error as "OutOfMemoryError: PermGen space failure". This is related to jprobe, weblogic server and jvm mainly Please let me know how can i solve it.
Upvotes: 0
Views: 323
Reputation: 1074
From GC faqs- http://java.sun.com/docs/hotspot/gc1.4.2/faq.html
How should the permanent generation be sized? The permanent generation is used to hold reflective of the VM itself such as class objects and method objects. These reflective objects are allocated directly into the permanent generation, and it is sized independently from the other generations. Generally, sizing of this generation can be ignored because the default size is adequate. However, programs that load many classes may need a larger permanent generation.
How can I increase the permanent generation size? Use the command line option -XX:MaxPermSize=
Upvotes: 0