It is because of constant class loading.
Java stores class byte code and all the constants (e.g. string constants) in permanent heap that is not garbage collected by default (which make sense in majority of situations because classes are loaded only once during the lifetime of an application).
In applications that often load classes during an entire lifetime that are:
- web and application servers during hot redeployment;
- IDE's when running developed applications (every time you hit Run button in Netbeans or eclipse it loads your application's classes a new);
- etc
this behavior is improper because a heap fills full eventually.
You need to turn on permanent heap garbage collection to prevent this error.
I use options
-XX:MaxPermSize=256M
-XX:+CMSClassUnloadingEnabled
-XX:+CMSPermGenSweepingEnabled
(stopped my eclipse 3.4 from throwing "java.lang.OutOfMemoryError: PermGen space
" so it should also work with netbeans).
Edit: Just note that for Netbeans you set those options in:
[Netbeans installation]\etc\netbeans.conf
You should prefixe those options with -J
and add them in netbeans_default_options
(see comments in netbeans.conf
for more informations).