Reputation: 147
hi guys sometimes on my website solar goes down, generating an exception.
java.lang.OutOfMemoryError: Java heap space
java.lang.reflect.InvocationTargetException
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at org.apache.catalina.startup.Bootstrap.stopServer(Bootstrap.java:344)
at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:435)
Caused by: java.lang.OutOfMemoryError: Java heap space
how could I solve it?
Upvotes: 0
Views: 77
Reputation: 149
-XX:+HeapDumpOnOutOfMemoryError
. Analyze the heapdump with visualvm, jmap ... to detect any memory leak issues.Upvotes: 3