java.lang.OutOfMemoryError: Java heap space
Searched on Google with the first line of a JAVA stack trace?
We can recommend more relevant solutions and speed up debugging when you paste your entire stack trace with the exception message. Try a sample exception.
Recommended solutions based on your search
Samebug tips
An easy way to solve OutOfMemoryError in java is to increase the maximum heap size by using JVM options
-Xmx512M
, this will immediately solve your OutOfMemoryError.In Eclipse : go to Run --> Run Configurations --> then select the project under maven build --> then select the tab "JRE" --> then enter
-Xmx1024m
.This should increase the memory heap for all the builds/projects. The above memory size is 1 GB.
Solutions on the web
via GitHub by okkhoy
, 11 months agovia Google Groups by Andrea Salvadore, 8 months ago
via jakarta-cactus-user by Petar Tahchiev, 1 year ago
via Stack Overflow by Amit Agarwal
, 1 year agovia Stack Overflow by Mulone
, 2 years agovia Stack Overflow by CronoRG
, 2 months agojava.lang.OutOfMemoryError: Java heap space
at java.util.Arrays.copyOf(Arrays.java:2367)