Global web icon
stackoverflow.com
https://stackoverflow.com/questions/1596009/java-l…
java.lang.OutOfMemoryError: Java heap space - Stack Overflow
If you want to increase your heap space, you can use java -Xms<initial heap size> -Xmx<maximum heap size> on the command line. By default, the values are based on the JRE version and system configuration. You can find out more about the VM options on the Java website. However, I would recommend profiling your application to find out why your heap size is being eaten. NetBeans has a very good ...
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/37335/how-to-d…
How to deal with "java.lang.OutOfMemoryError: Java heap space" error?
The user can open unlimited number of files, and the program keeps the opened objects in the memory. After a quick research I found Ergonomics in the 5.0 Java Virtual Machine and others saying on Windows machine the JVM defaults max heap size as 64MB. Given this situation, how should I deal with this constraint?
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/11824134/cause…
Caused by: java.lang.OutOfMemoryError: Java heap space
Caused by: java.lang.OutOfMemoryError: Java heap space Asked 13 years, 4 months ago Modified 10 years, 5 months ago Viewed 66k times
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/40968038/excep…
exception: java.lang.OutOfMemoryError: Java heap space
Heap space issue comes when you have loaded some heavy file into the JVM while trying to process it. For example, if you have loaded a large log file containing up to 1 GB of data, then java.lang.OutOfMemoryError: Java heap space issue will come. In case you have a specific requirement where you wish to process large files in Java then try to follow this link As it mentions: How to solve java ...
Global web icon
stackoverflow.com
https://es.stackoverflow.com/questions/4916/error-…
Error Java heap space - Stack Overflow en español
Solución práctica: aumenta la memoria. Si el problema persiste: no utilices el método SerializationUtils#clone, busca una forma de realizar la copia profunda (deep copy) del objeto. en cuestión. Al parecer es un objeto muy pesado en memoria. Si el objeto no tiene muchos campos, te recomiendo crear un constructor de copia manual. Si es muy pesado, te recomiendo crear el constructor de copia ...
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/4066424/java-l…
java.lang.OutOfMemoryError: Java heap space in Maven
java.lang.OutOfMemoryError: Java heap space in Maven Asked 15 years, 1 month ago Modified 2 years, 10 months ago Viewed 257k times
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/7553568/how-do…
How do I solve a "java.lang.OutOfMemoryError: Java heap space"?
The thread java.lang.Thread @ 0x27ee0478 main keeps local variables with total size 69,668,888 (98.76%) bytes. The memory is accumulated in one instance of "char []" loaded by "<system class loader>"**
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/2336793/java-l…
java.lang.OutOfMemoryError: Java heap space - Stack Overflow
The java.lang.OutOfMemoryError means that you have exceeded the memory allocated by the JVM. Use the -Xmx to change the maximum memory heap size of your JVM. (thank you Software Monkey)
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/21138751/spark…
Spark java.lang.OutOfMemoryError: Java heap space
Spark java.lang.OutOfMemoryError: Java heap space Asked 11 years, 10 months ago Modified 2 years, 6 months ago Viewed 467k times
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/2718786/how-to…
How to increase Java heap space for a tomcat app
This answer doesn't actually answer OP's question about how to increase the java heap space for a Tomcat application?