i\'m getting the following error \"http-9000-5\" java.lang.OutOfMemoryError: PermGen space
org.apache.catalina.core.ApplicationDispatcher invoke SEVERE: Servlet.serv
PermGen and heap size are different from each other.
You need to increase permgen space like this:
-XX:PermSize=256m
-XX:MaxPermSize=256m
add this flags.
Also look at this: explaining-java-lang-outofmemoryerror-permgen-space and this: how-to-deal-with-java-lang-outofmemoryerror-permgen-space-error
Hope this helps.