it's the app server's problem. i don't know the reason, but redeploying my tomcat (even when the app is small) sooner or later leads to "out of perm space"
I guess it could be the app server in this case. I've had other issues where the IDE hangs a lot just doing simple editing. So I thought that perhaps they were related.
it's the app server's problem. i don't know the reason, but redeploying my tomcat (even when the app is small) sooner or later leads to "out of perm space"
I've encountered this on Resin when using Hibernate. Hot deploys eventually eat up all available permgen space. I typically use 256m, and bounce app server every 3-6 deploys.
Hello Andrew,
Are you sure that IntelliJ itself runs out of permgen space, not your appserver
or the Java compiler process?
--
Dmitry Jemerov
Development Lead
JetBrains, Inc.
http://www.jetbrains.com/
"Develop with Pleasure!"
it's the app server's problem. i don't know the reason, but redeploying my tomcat (even when the app is small) sooner or later leads to "out of perm space"
I guess it could be the app server in this case. I've had other issues where the IDE hangs a lot just doing simple editing. So I thought that perhaps they were related.
HamsterofDeath wrote:
I've encountered this on Resin when using Hibernate. Hot deploys
eventually eat up all available permgen space. I typically use 256m,
and bounce app server every 3-6 deploys.
HTH,
Daniel.