The myeclipse 9.1 optimization speed solution has four major aspects: optimization module, integrated configuration, removing unnecessary checks, and disabling updates.
Step 1: Remove unnecessary modules
20% of a system's functions often meet 80% of the requirements, and myeclipse is no exception. We only need 20% of the system functions in most cases, so we can disable loading and starting some unused modules. Open the Configuration window through windows-preferences, and select general --> startup and shutdown on the left. At this time, the module loaded at eclipse startup is displayed on the right, you can remove some modules according to your actual situation.
Windows --> perferences --> General --> startup and Shutdown
You can disable the following startup items: 1) JSF/icefaces (depending on your needs); 2) Most application servers (only available for application servers); 3) Derby; 4) two automatic update automatic updates.
Step 2: cancel the spelling check of myeclipse
Spelling check will cause us a lot of trouble. Our method names will all be abbreviations of words, and myeclipse will prompt errors, so we 'd better remove them. After all, we are not writing English articles.
Windows --> perferences --> General --> editors --> text editors --> spelling
Disable enable spell checking.
Step 3: cancel the automatic verification project configuration file at myeclipse startup
In general, we only need to verify the XML and JSF files, and Other verifications are basically useless.
Cancellation Method:
Windows --> perferences --> myeclipse --> Validation
Except XML and JSF, you can leave it unselected.
You can unhook all build parts.
Manual verification method:
On the file to be verified, right-click the file --> myeclipse --> RUN validation; to achieve the same effect.
Step 4: Disable Automatic Maven download
Windows --> perferences --> myeclipse --> maven4myeclipse --> Maven
Disable all download and update start options.
Step 5: Change the default JSP Open Mode
After installing myeclipse, edit the JSP page to open the JSP editing page and preview the page, which is slow.
Windows --> perferences --> General --> editors --> File Associations
Select an editor below and click the default button on the left.
Step 6: JDK does not use the JRE provided by myeclipse
1) JDK uses external JDK instead of myeclipse's built-in JRE.
2) window --> preferences --> myeclipse --> servers --> integrated sandbox; Disable Derby and tomcat 6.
3) personal habits: window --> preferences --> workspace, text encoding to UTF-8.
4) window --> preferences --> myeclipse --> JSP, encoding to UTF-8.
Source: http://blog.csdn.net/chszs/article/details/7418880