1.指定本機java環境
Windows-->preferences-->java-->Insetallel JREs
右側 單擊ADD standard VM-->Next -->Directory-->Finash
點選 新增jre環境-->點擊OK
2.更換背景顏色 個人感覺白色比較刺激眼睛 可選擇性更換
Windows-->preferences-->General-->Editors-->Text Editors
右側左下方 選中 Background color后, 單擊 System default選項框后, 點擊color 選擇顏色后 -->OK
3.取消servers中myeclipse自帶的tomcat 開發中常常需要到相應的 tomcat目錄中查看,
指定本機自帶tomcat 可以更方便的操作
Windows-->preferences-->MyEclipse-->Servers-->Tomcat
根據個人選擇指定tomcat目錄 並點選上方的 radio Enable 選項-->OK
4.取消server中的tomcat
Windows-->preferences-->MyEclipse-->Servers-->Integrated Sandbox-->Myeclipse Tomcat 6 點擊disable
5.取消自動validation 有一堆,什么xml、jsp、jsf、js等等,我們沒有必要全部都去自動校驗一下,只是需要的時候才會手工校驗一下!
取消方法:
windows-->perferences-->myeclipse–->validation
除開Manual下面的復選框全部選中之外,其他全部不選
手工驗證方法:
在要驗證的文件上,單擊鼠標右鍵--->myeclipse--->run validation
6.取消Eclipse拼寫檢查
拼寫檢查會給我們帶來不少的麻煩,我們的方法命名都會是單詞的縮寫,他也會提示有錯,所以最好去掉,沒有多大的用處
windows--->perferences--->general-->editors->Text Editors->spelling
點擊enable spell check
7.jsp /xml /html
windows--->perferences--->general--->editors->file associations
在下方選擇一種編輯器,我選擇的是 myeclipse jsp/xml/html editor 然后點擊左邊的default按鈕
8.取消Maven更新(啟動更新)
Window > Preferences > Myeclipse > Maven4Myeclipse 禁用Download repository index updates on startup
9.修改jsp文件內容的編碼
window->Preferences ->myeclipse->Files and Editors->jsp
10.hovers javascript hovers (鼠標懸停提示關閉) 鼠標懸停提示關閉
Window->preference ->Myeclipse ->Files and Editors-> javascript -> edit -> 選中Hover 去掉勾選Combined Hove
java : Window->preference ->java->Editor->Hovers 去掉勾選Combined Hover Bug模式調試 勾選上Variable Values
11.修改新建文件java/js/html/properties文件編碼
window->Preferences -> General->Content Type
把下面的Default Character Set的值改成UTF-8
12.個人習慣:
Window --> Preferences --> General --> Workspace,文字編碼改為UTF-8。
13.修改右鍵
windows –> Customize Perspective 選項
14.myeclipse 內存溢出
打開MyEclipse目錄下的myeclipse.ini文件 在后面修改下面幾個屬性
-vmargs
-Xms512m ( JAVA能夠分配的內存)
-Xmx512m ( JAVA能夠分配的最大內存)
-XX:PermSize=512M (非堆內存初始值)
-XX:MaxPermSize=512M (非堆內存最大值)
-XX:ReservedCodeCacheSize=64m (eclipse緩存)
15.myeclipse2014 總是不停的在 Update index,研究發現Update index...是Maven在下載更新,但很是影響myeclipse的使用速度,禁用辦法如下: