文章目錄
- 1.通過修改啟動參數,提高效能
- 4.自動重新整理Workspace
- 5.增強Java 類型指示
eclipse外掛程式:http://www.javago.net/eclipse_plug/index.htm
轉自:http://www.daniel-journey.com/archives/category/eclipse1.通過修改啟動參數,提高效能
設定Eclipse啟動參數-Xms(最小heap數)和-Xmx(最大heap數)。 Windows的使用者,可以建立一個捷徑,並修改捷徑的“目標”的參數,例如下面這個例子。
path/eclipse/eclipse.exe -vmargs -Xms1000M –Xmx1000M
2.減少不必要的啟動外掛程式
在Preferences -> General -> Startup and Shutdown中,刪除不必要的啟動外掛程式。
3.讓Eclipse在儲存的時候自動進行Organize Imports
在Preferences -> Java -> Editor -> Save Actions裡面可以定義,當Java檔案進行儲存時自動進行的操作,其中就有Organize Imports的操作支援。
4.自動重新整理Workspace
在Preferences -> General -> Workspace then check Refresh automatically中可以開啟,Eclipse自動重新整理Workspace的功能。
5.增強Java 類型指示
在Preferences -> General -> Appearance -> Label Decorations中啟用Java Type Indicator ,這樣Eclipse就會對不同Java類型用不同的表徵圖加以區別。
參考文檔
http://bwinterberg.blogspot.com/2009/08/optimize-eclipse-galileo.html