Showing posts with label eclipse. Show all posts
Showing posts with label eclipse. Show all posts
Wednesday, March 27, 2013
Eclipse Remote Debugging
Eclipse Remote Debugging

In earlier posts, I wrote about remote debugging with eclipse. Today i found some interesting eclipse debugging blogs,http://javarevisited.blogspot.in/2011/02/how-to-setup-remote-debugging-in.html
http://javarevisited.blogspot.in/2011/07/java-debugging-tutorial-example-tips.html
--
Thank you.
Regards,
Kaleeswaran.S
Thank you.
Regards,
Kaleeswaran.S
Wednesday, August 8, 2012
Eclisep Exception in thread "main" java.lang.OutOfMemoryError: Java heap space at java.util.Arrays.copyOf
Eclisep Exception in thread "main" java.lang.OutOfMemoryError: Java heap space at java.util.Arrays.copyOf
If you face this issue in eclipse while running a standalone java application. Eclipse will allocate only 384 MB of Java heap memory. based on the type of JRE you are using and eclipse plugin and application size, this issue occurs. we have to increase heap memory size. To increase the available heap memory, right click your java progrram click "run as -> run configurations" . click argument tab and type -Xms1024M -Xmx1024M in VM arguments field. This increases VM size while running from eclipse.

--
Thank you.
Regards,
Kaleeswaran.S
If you face this issue in eclipse while running a standalone java application. Eclipse will allocate only 384 MB of Java heap memory. based on the type of JRE you are using and eclipse plugin and application size, this issue occurs. we have to increase heap memory size. To increase the available heap memory, right click your java progrram click "run as -> run configurations" . click argument tab and type -Xms1024M -Xmx1024M in VM arguments field. This increases VM size while running from eclipse.

--
Thank you.
Regards,
Kaleeswaran.S
Subscribe to:
Posts (Atom)