How can I disable "Initialize Java Tooling" on Eclipse startup?

58,084

Solution 1

from Command prompt just type

eclipse.exe -clean

Solution 2

Try to terminate eclipse then backup and delete the folder

.metadata/.plugins/org.eclipse.core.resources/.history

Restarting eclipse will not hang the Java Tooling process.

Solution 3

The java-tooling implement a Java IDE supporting the development of any Java application, including Eclipse plug-ins. It adds a Java project nature and Java perspective to the Eclipse Workbench as well as a number of views, editors, wizards, builders, and code merging and refactoring tools. The Java-tooling provides a development environment to developer.

how to disable plugin at startup

you can try disabling the java-tooling while launching the application.I am giving you a snapshot.

enter image description here

go find perspective as Window->Preferences->Run&Launching->java Application-> and make debug an run combobox to none value. Hope this can solve your problem.

In case of Eclipse Oxygen, this settings can be found at:

Eclipse > Preferences > Run/Debug > Launching > Perspectives > Java Application > Eclipse JDT Launcher

enter image description here

Solution 4

There will be folder .metadata in your project . Just delete the .log files in it and restart your eclipse.It should work

Solution 5

Just uncheck "Build Automatically" and force quit Eclipse. Then start it again. Project>Build Automatically - uncheck -force quit -start Eclipse

Share:
58,084
Govan
Author by

Govan

I am a developer working mainly with Java with interest for new technologies. There is no knowledge when information is not shared. There is no answer without questions.

Updated on April 05, 2020

Comments

  • Govan
    Govan about 4 years

    In our application which is a Eclipse plugin, when Eclipse starts it takes long time and the users are seeing "Initialize Java tooling" message on the left down corner of application. Because our users don't have anything to do with java, I wonder if it is possible to disable Initialize Java tooling.

    Another question: What is Initialize Java tooling?