Google Web Toolkit - Out of memory
In case some of you are working on GWT(Google Web Toolkit) using eclipse and you are experiencing out of memory problems during loading or compiling your web apps.
The anser is here...
Under Eclipse on run->open run dialog...
Select GWT Hosted mode application on the side tree and choose prameters tab and comfigure your VM Options with this syntax "-Xmx800m"
in executing the java virtual machine the "-Xmx" means the maximum range of memory and the "800m" means 800MB. Which means increasing the maximum memory upto 800Mega bytes.
The anser is here...
Under Eclipse on run->open run dialog...
Select GWT Hosted mode application on the side tree and choose prameters tab and comfigure your VM Options with this syntax "-Xmx800m"
in executing the java virtual machine the "-Xmx" means the maximum range of memory and the "800m" means 800MB. Which means increasing the maximum memory upto 800Mega bytes.
Comments