Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why Eclipse is too slow on startup? [closed]

I am using windows 7 home premium with service pack 1 installed. I had installed JDK 1.7u21. Then I downloaded Eclipse Juno (Before that I was using Eclipse Indigo with JDK 1.6u26) and when I started it, I found out that it is taking too much time to start. It is pausing on the splash screen for more than 10 minutes, and then only asks for the workspace selection.

Then I removed Juno and installed Indigo again, also uninstalled JDK 1.7 and installed JDK 1.6u45, but now also the problem persists. When I searched, I have found that deleting files in the workspace/.metadata/.plugins/org.eclipse.core.resources will fix he problem. I have done that also, but no use.

The below given is my 'eclipse.ini'

-startup
plugins/org.eclipse.equinox.launcher_1.2.0.v20110502.jar
--launcher.library
plugins/org.eclipse.equinox.launcher.win32.win32.x86_1.1.100.v20110502
-product
org.eclipse.epp.package.jee.product
--launcher.defaultAction
openFile
--launcher.XXMaxPermSize
256M
-showsplash
org.eclipse.platform
--launcher.XXMaxPermSize
256m
--launcher.defaultAction
openFile
-vmargs
-Dosgi.requiredJavaVersion=1.5
-Xms40m
-Xmx512m
like image 956
kaushik Avatar asked Jun 06 '13 04:06

kaushik


People also ask

Why does Eclipse take so long to start?

this eclipse. Such a long startup time is usually the sign of some kind of timeout, because a resource (path, internet address?) does not respond. Show activity on this post.

Why is Java Eclipse so slow?

Because Eclipse uses tons of java files, an anti-virus attempts to individually unpack and scan every one of them. So for Windows platform: turn off the on-demand scanning of packed files, otherwise Eclipse will be unusably slow.

How do I fix Eclipse not responding?

If there is a project you earlier imported externally (outside of Workspace), that may cause this problem. If you can access Eclipse try to remove it. If you are getting the 'No responding at startup', then go delete the file at source. This will solve the problem.


1 Answers

Basically, there might be too many plugins at startup which might be creating this mess. You must disable these startup plugins

Take a look at the previous post Temporarily disable Eclipse plugin

Another very good guide to speed up eclipse is given as under. http://www.beyondlinux.com/2011/06/25/speed-up-your-eclipse-as-a-super-fast-ide/

A previous StackOverflow post also talks of speeding up eclipse How can you speed up Eclipse?

You can also see the list of plugins that are loaded at startup at enter image description here

like image 198
AurA Avatar answered Sep 30 '22 21:09

AurA