解決eclipse編輯jsp、js檔案時,經常出現卡死的問題

yjclsx發表於2018-07-05
使用Eclipse編輯jsp、js檔案時,經常出現卡死現象,解決方法如下:
1、取消驗證
windows–>perferences–>validation
把 除了manual 下面的全部點掉,build下只留 classpath dependency Validator。
其實我是把所有的都給關了!
2、關閉拼寫檢查
windows–>perferences–>general–> editors->Text Editors->spelling
3、關閉js校驗
在專案名上按alt+enter - 》Buliers 裡面取消不需要的校驗,一般都是js校驗很慢,所以把JavaScript Validator前面的勾去掉。
4、修改專案的.project檔案
eclipse中預設js編輯器非常慢,尤其在拷貝貼上程式碼時,因為使用的是官網標準版的eclipse3.9 for javaEE未裝任何外掛,寫JS時卡的簡直無法忍受,嘗試去掉所有的validate,包括選單和專案屬性中的都無作用,後來在專案根目錄的.project檔案中發現以下紅色行居然Validator都還在,把紅色對應的配置段全部刪去後,問題解決,編輯JS再也不似蝸牛了.
<buildSpec>
<buildCommand>
<name>org.eclipse.ui.externaltools.ExternalToolBuilder</name>
<triggers>full,incremental,</triggers>
<arguments>
<dictionary>
<key>LaunchConfigHandle</key>
<value>&lt;project&gt;/.externalToolBuilders/org.eclipse.wst.jsdt.core.javascriptValidator.launch</value>
</dictionary>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.wst.common.project.facet.core.builder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.ui.externaltools.ExternalToolBuilder</name>
<triggers>full,incremental,</triggers>
<arguments>
<dictionary>
<key>LaunchConfigHandle</key>
<value>&lt;project&gt;/.externalToolBuilders/org.eclipse.wst.validation.validationbuilder.launch</value>
</dictionary>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.jem.workbench.JavaEMFNature</nature>
<nature>org.eclipse.wst.common.modulecore.ModuleCoreNature</nature>
<nature>org.eclipse.wst.common.project.facet.core.nature</nature>
<nature>org.eclipse.jdt.core.javanature</nature>
<nature>org.eclipse.wst.jsdt.core.jsNature</nature>
</natures>

相關文章