previous      content      next
I've got message 'OutOfMemory Permgen space'

Can't find your answer? Please refer to documentation and demos, ask your question in forum, or contact support.

This problem is caused by class loader leaks. Read this article to learn how to profile class loading issues.

If you get this error running your application with profiler and do not get it running without profiler, it can be caused by bytecode instrumentation which require additional space for class meta information. In this case, please increase PermGen size with -XX:MaxPermSize=<size in megabytes>m VM option (e.g. add -XX:MaxPermSize=128m if you do not have -XX:MaxPermSize specified, or set bigger size in existing -XX:MaxPermSize)

previous      content      next