Hi,
this is copy-paste from http://tapestry.apache.org/specific-errors-faq.html:
:)
My application fails with the error *PermGen*, how do I fix this?
PermGen refers to the part of the Java memory space devoted to permanent
objects, which are mostly loaded classes. When developing under Tapestry,
Looks like you need to increase the size available for PermGen space in
the jvm. Here's the setting we use when starting our server:
-XX:MaxPermSize=128m
Here's link for more info:
http://community.eapps.com/showthread.php?153-Eliminate-PermGen-out-of-memory-errors-for-good!
-Original Me