Apr 15, 2011

Specifying VM with Eclipse

Eclipse Closing After Showing Splash Screen

Today we had an issue with the Eclipse IDE showing the splash screen and closing prematurely. A look at a fresh eclipse.ini and the one in the current didn't give any differences. 

The log file created in the .metadata folder of the workspace also didn't point to the exact problem.

Here are the things we tried:
1) Increase heap size in eclipse.ini
2) Removed the plugins specified in the eclipse.ini file
3) Tried a fresh Eclipse

Running eclipse.exe from command line didn't show any error messages. Then we tried eclipsec.exe present in the Eclipse_Home directory and it told that VM could not be located. The exact error message was:

NoClassDefFoundError: Java/Lang/Object

We tried to run eclipse using command line arguments like:
C:/>eclipse.exe -vm /javaw.exe
This resolved the issue and eclipse started fine.

Then we added -vm /javaw.exe to eclipse.ini bout eclipse couldn't start by double clicking eclipse.exe. Then after trying a few things we ended up with:
-vm
/javaw.exe

and it worked with the newline character.

The above information could be helpful to people who get into this situation in future.


2 comments:

  1. Thanks a lot Sandeep for putting your experience with this error , though I have not faced this error but it will certainly help people.

    Javin
    How to setup java remote debugging in Eclipse

    ReplyDelete
  2. I also ran into this issue some time ago and I share your pain :) Nice writeup!

    ReplyDelete