Eclipse優化

1.在eclipse啓動的時候,它老是會搜索讓其運行的jre,每每就是這個搜索過程讓eclipse啓動變慢了。(沒設置時,等2-3s出現進度條,設置後直接出現進度條)編程

只要在eclipse.ini中加入-vm的參數就能夠了
eclipse啓動優化,終於不那麼卡了!-飛網windows

 

2.設置字體大小
Window-Preferences->General->Appearance->Colors and Fonts->Basic->Text Fonteclipse

 

3.windows–>perferences–>general–>Content Types,將須要修改的類型修改爲UTF-8jsp

 

4.JSP、XML等文件類型默認打開方式的修改
windows–>perferences–>General–>Editors->file associations選擇*.xml,選擇myeclipse xml editor點default,*.jsp則選jsp editor點default等字體

 

5.tab代碼縮進4個空格
Window->Preferences->General->Editors->Text Editors:Displayed tab width = 4,選重insert spaces for tabs優化

6.關閉拼寫檢查設置
ui

 

7.取消全部啓動時要激活的插件(在用時激活也同樣)和其它的相關的在啓動時執行的操做。
編碼

 

8.編碼格式修改spa

windows–>perferences–>general–>Workspace,將工做空間中的文本文件的編碼格式改成UTF-8插件


9.關閉自動更新


10.關閉SaveAction。在每次保存時都會執行的操做,這個會嚴重的拖慢保存,特別是文件大時。這個其實只要本身養成良好的編程習慣,就徹底不須要這個了。


11.優化代碼提示。

 

12.註解配置

設置註釋模板的入口: Window->Preference->Java->Code Style->Code Template

文件(Files)註釋標籤
/**@Description:
 * @Title: ${file_name}
 * @Package: ${package_name}
 * @Author: ${user}
 * @Date: ${date} ${time}  
 */

類型(Types)註釋標籤(類的註釋):
/**@Description:
 * @ClassName: ${type_name}
 * @Author: ${user}
 * @Date: ${date} ${time}  
 * ${tags}
 */

字段(Fields)註釋標籤:
/**
 * @Fields ${field} : ${todo}
 */

構造器(Constructor & Methods)標籤:
/**@Description:
 * @Title: ${file_name}
 * @Date: ${date} ${time}
 * @Author: ${user}
 * @Throws
 * ${tags}
 */


方法(Methods)標籤:

/**@Description:
 * @Title: ${enclosing_method}
 * @Date: ${date} ${time}
 * @Author: ${user}
 * @Throws
 * ${tags}
 */


覆蓋方法(Overriding Methods)標籤
/* Description:
 * Title: ${enclosing_method}
 * ${tags}
 * ${see_to_overridden}
 */
 
表明方法(Delegate Methods)標籤:
/**
 * ${tags}
 * ${see_to_target}
 */

13.Eclipse自動文本驗證
Window->Preferences->Validation
保留manual(手動)部分,build下只留"classpath dependencyValidator"

手動驗證:選中文件右擊->Validation

 


 

修改黑色主題後,須要修改Debug執行當前行的顏色

window --preferences--general--editors--text editors--annotations--debug current instruction pointer

相關文章
相關標籤/搜索