标签:
基本上都通過 Window -> Preferences 進行設置:
保存自動格式化代碼:
Java:Java -> Editor -> Save Actions,選中 Perform the selected actions on save,選中 Format source code;
JavaScript:MyEclipse -> Files and Editors -> JavaScript -> Editor -> Save Actions,操作同上。
代碼自動提示:
Java -> Editor -> Content Assist,將 Auto activation triggers for Java 的值由“.”更改爲“.abcdefghijklmnopqrstuvwxyz”。
單行註釋不換行(非更改行長度),保持註釋前格式:
Windows -> Preferences -> Java -> Code Style -> Formatter,Edit(如果沒有新建的話請先新建),Comments 選項卡,將 Enable line comment formatting 取消勾選即可。
PS:<pre> …… </pre> 是在 /** …… */ 中保持格式不改變。
將默認 JRE 替換爲自定義的:
Java -> Installed JREs,點擊 Add 按鈕,選中 Standard VM,點擊 Next 按鈕,點擊 Directory… 按鈕,選擇 JDK 目錄。
然後勾選剛添加的 JRE,將它作爲默認的。
修改 JSP 文件默認編碼:
MyEclipse -> Files and Editors -> JSP,將 Encoding 更改爲 ISO 10646/Unicode(UTF-8)。
關閉自動更新:
Maven:MyEclipse -> Maven4MyEclipse,去除勾選 Download repository index updates on startup。
取消文件自動校驗:
Myeclipse -> Validation,Build 一列,只保留 Classpath Dependency Validator,其它全部去掉。
設置工作空間項目編碼:
General -> Workspace,Text file encoding 更改爲 Other UTF-8,Next text file line delimiter 更改爲 Other Unix。
Tomcat 等暫略。
标签:
原文地址:http://www.cnblogs.com/duanluan/p/5792063.html