I've been getting some OutOfMemory errors lately in my application. Is it possible to detect ahead of time when the virtual machine is running low on memory? In other words to preemptively deal with OutOfMemory errors before they actually occur?
|
2
|
|
|
|
|
|
Java (as of Java 5) now has a standard JMX bean that can be used to receive low memory notification. See java.lang.management.MemoryMXBean. |
||
|
|
|
|
Have a look at the freeMemory method of Runtime (see http://java.sun.com/javase/6/docs/api/java/lang/Runtime.html for details) In short: do Runtime.getRuntime().freeMemory() |
||
|
|
|
I suggest that a better question is "Why is my application running out of memory?" You may need to increase the memory available to the JVM at startup; You may have a memory leak (objects that aren't getting released when they're no longer needed.) More information on the application might also be helpful
Using performance monitoring/profiling tools to find the cause of the memory problem is really your best bet. |
|||
|
|
