Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Eclipse workspace vs. regular directory

Tags:

java

eclipse

Note: I don't find this being a duplicate of any question. I have done a lot of research on this (few hours, read whole Google about workspaces probably - it's a metaphor of course) but couldn't find the answer to my problem.


So I have done some programming in Java and mainly used Eclipse for it (when projects were getting more complex, before I had used Vi). I was always working in that default workspace $HOME/eclipse-workspace because I never really understood the point of workspaces.

I am back to programming in Java, installed Eclipse and get prompted to Select a directory as workspace which kindly offered me to use /home/campovski/eclipse-workspace. Before I would just hit Launch but now I started getting curious. What are these workspaces, what are they used for...?

I have done some research:

  • Eclipse Workspaces: What for and why? (SE)
  • Eclipse - Workspaces (Tutorials point)
  • Documentation

I also followed the links that were provided in answers to the first link but none gave me the answer to my question:

What is the difference between a directory and a workspace?

As is stated in third link: A workspace can have any number of projects, each of which can be stored in a different location in some file system. Ok, this might be useful, but what is the problem of including all projects in one parent directory which could serve instead of a workspace?

If we take Matlab for example: enter image description here

There you have a directory selection menu on the left, just like in Eclipse. The current directory you are in is selected as a working directory and any Matlab function and scripts declared in this directory can be executed in the Command Window. The analogy from Eclipse would be as to import a function from different folder.

So my question to rephrase it is, is there anything else to workspaces than workspace just being a collection of projects, folders and files, just like a normal directory, except that in workspace there can be projects from different paths.

like image 765
campovski Avatar asked Sep 07 '17 08:09

campovski


People also ask

What is Eclipse workspace directory?

The workspace is a directory on the disk where the Eclipse platform and all the installed plug-ins store preferences, configurations and temporary information. Subsequent Eclipse invocations will use this storage to restore the previous state.

Which is a key benefit of Eclipse workspaces?

About Eclipse Workspace The workspace has a hierarchical structure. Projects are at the top level of the hierarchy and inside them you can have files and folders. Plug-ins use an API provided by the resources plug-in to manage the resources in the workspace.

Where should I put my Eclipse workspace?

At the end of the day, I would recommend that you put your workspace wherever you'd like. When you initially install Eclipse, it should ask you where you want your default workspace, choose browse and decide based on your personal preference. You can always create multiple workspaces for different types of projects.

Where is the Eclipse workspace directory?

This list is shown under File > Switch Workspace. Under Recent Workspaces, you'll see list of all your recent workspace.


2 Answers

Workspace it's like user's homedir in linux.

Workspaces bind together JRE version, installed servers, and if you're using server connectors, all the data and temporary WARs, EARs are saved there (.metadata/plugins). Switching workspace is for switching context of your work: project, client, language, paradigm ... Workspace is the directory from where ECLIPSE bootstraps itself up. All local dependency resolutions ends up in workspace directory.

VisualStudio's "solution" concept is not even near to the concept of workspace, as solution is just parent folder to group one or more projects and give them some common CLR names and properties.

I'm using Eclipse for at least 10 years now... I got to this conclusion : I have same workspace for all projects that use same JRE and same APP server. I have different Eclipse versions, if I need some special tooling (Spring or CDI or PHP or some exotic plugin). All workspaces are located in my home directory.

You can paste / copy workspace to different computer, with same Eclipse version it works out of the box.

like image 152
Mitja Gustin Avatar answered Oct 06 '22 16:10

Mitja Gustin


Simplified, a workspace is a special directory that is monitored by Eclipse: a change inside the workspace directory can trigger something.

For example, a Java file that will be saved will be compiled and might create error markers in a dependent Java projects. Changes made outside of Eclipse are visible inside Eclipse only after a refresh (assuming Window > Preferences: General > Workspace: Refresh using native hooks or pooling is disabled): instead of slow file accesses, Eclipse stores states of workspace files internally.

From a historical point of view, the workspace concept can be seen as a compromise between database and file system (in IBM VisualAge which can be seen as the predecessor of Eclipse the Java source code to be edited was stored in a database).

In addition:

  • Multiple instances of Eclipse can run concurrently, each with its own workspace.

  • Eclipse stores almost all preferences (Window > Preferences) in the workspace (in the .metadata subfolder). Different workspaces can have different preferences.

  • The .metadata subfolder is also be used for caching to speed-up Eclipse.

I suspect that the target platform that is required to develop Eclipse with Eclipse (dogfooding) also played a role in the decision for the workspace concept (see also Eclipse bug 392652).

like image 26
howlger Avatar answered Oct 06 '22 17:10

howlger