MyEclipse can not start the solution we often in the development process when loading large projects because the project is very large, resulting in a long compilation time. or other reasons cause the progress bar sometimes kept running, occupy a lot of memory, in the helpless directly to kill the process, when opened again, this time the tragic thing happened.
found that the MyEclipse boot is not, the memory size of the process is always constant. Caught in a tangle.
Here's how to solve this problem often encountered at work:
Environment Description
IDE version: Myecplise6.0 (same as other version methods)
Installation path: D:\dev_IDE\myeclipse
Working space: D:\dev_IDE\myeclipse\workspace
method One: Modify the working space
There will be a choice of workspaces when the MyEclipse is just started. For a new workspace, if the default work space is checked in, not out, go to your MyEclipse installation path (such as: D:\dev_IDE\myeclipse\eclipse\configuration\.settings), Inside there is a org.eclipse.ui.ide.prefs file, the inside of the Show_workspace_selection_dialog modified to True.
The downside of doing this is that you need to re-import your project, need to recompile, and need your regular backup habits.
Method Two: Delete error compilation information
This method has only recently found that when you kill the process during the compile project, there will be a compile and load "content" error, resulting in the "content" cannot be resolved at startup, so the content should be purged. For example, when your project is named "TestProject", in the installation folder (D:\dev_IDE\myeclipse\workspace\.metadata\.plugins\org.eclipse.core.resources\. Projects\testproject), there are two files. Markers and. Markers.snap, delete the two files. Restart the Myeclipse,ok.
MyEclipse can not start the solution