EAP 6708 Not Starting

I installed with the full windows exe.

java.lang.AssertionError:
at com.intellij.openapi.diagnostic.DefaultLogger.error(DefaultLogger.java:49)
at com.intellij.openapi.diagnostic.Logger.error(Logger.java:60)
at com.intellij.ide.plugins.PluginManager.initClassloader(PluginManager.java:670)
at com.intellij.ide.plugins.PluginManager.bootstrap(PluginManager.java:592)
at com.intellij.ide.plugins.PluginManager.main(PluginManager.java:108)
at com.intellij.ide.plugins.PluginManager.main(PluginManager.java:99)
at com.intellij.idea.Main.main(Main.java:20)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:585)
at com.exe4j.runtime.LauncherEngine.launch(Unknown Source)
at com.exe4j.runtime.WinLauncher.main(Unknown Source)

0
Avatar
Permanently deleted user

Hello zmbs,

Could you please provide the complete idea.log fragment from that start of
IDEA?

I installed with the full windows exe.

java.lang.AssertionError:
at
com.intellij.openapi.diagnostic.DefaultLogger.error(DefaultLogger.java
:49)
at com.intellij.openapi.diagnostic.Logger.error(Logger.java:60)
at
com.intellij.ide.plugins.PluginManager.initClassloader(PluginManager.j
ava:670)
at
com.intellij.ide.plugins.PluginManager.bootstrap(PluginManager.java:59
2)
at
com.intellij.ide.plugins.PluginManager.main(PluginManager.java:108)
at com.intellij.ide.plugins.PluginManager.main(PluginManager.java:99)
at com.intellij.idea.Main.main(Main.java:20)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.j
ava:39)
at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccess
orImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:585)
at com.exe4j.runtime.LauncherEngine.launch(Unknown Source)
at com.exe4j.runtime.WinLauncher.main(Unknown Source)

--
Dmitry Jemerov
Software Developer
JetBrains, Inc.
http://www.jetbrains.com/
"Develop with Pleasure!"


0

How about starting it with "idea.bat" ? Btw, "idea.exe" starts just fine for me on WinXP. I've unpacked the ZIP (http://download.jetbrains.com/idea/idea6708.zip)

0

Btw, Dmitry do you have any estimations on when Selena will be bundled with JDK 6 ?

0
Avatar
Permanently deleted user

Presumably only after JDK 6 is GA on MacOSX.

--Dave Griffith

0
Avatar
Permanently deleted user

Sorry for the delay; pain meds kicked in and I took a little nap. after I made the post :)

I made a copy of the 6700 and downloaded the 6708 unzip file, and tried it that way. Still didn't work.

I then started 6700, by accident, shut it down, and tried 6708(installed from the .exe) again, so that I could get a current idea.log. This time, it started just fine. If it happens again, I will make sure to get the idea.log.

This is on a XP machine, regular user account; I normally don't need to go into admin account to install the EAP.

Thanks for the quick follow up.

0
Avatar
Permanently deleted user

Had the same problem. No log file was written before idea crashed -

idea.exe - same error in error dialog
idea.bat -Exception in thread "main" java.lang.NoClassDefFoundError: com/intellij/idea/Main

Cleared out system dir and restarted - started fine.

0

Probably, some of the problems were caused by
SET CLASS_PATH=%IDEA_HOME%\lib\idea.jar
replaced by
SET CLASS_PATH=%IDEA_HOME%\lib\bootstrap.jar
in idea.bat

bootstrap.jar now contains "com.intellij.idea.Main" class.
Since I need to start-up IDEA via bat file in order to launch it on Java 6 - I always keep my private version of it when unpacking a new zip. This time it didn't start with "java.lang.NoClassDefFoundError: com/intellij/idea/Main" and when I diffed two versions of the bat (the one I used to keep all the time and the new one from 6708 build) - I saw the change.

0
Avatar
Permanently deleted user

That'll be it, thanks. Always thought that one day they might change idea.bat...

0

I think it was done to reduce the start-up time: previously com.intellij.idea.Main was located inside 50Mb idea.jar file and now it's only part of the lightweight 90K bootstrap.jar ..

0

请先登录再写评论。