天天看點

Apache Tomcat Server Options 選項說明

Apache Tomcat Server Options 選項說明

(1)Server Options的第一個選項Serve modules without publishing

在預設情況下,當項目部署到tomcat中,該插件會把項目檔案拷貝到上一個配置項Server Locations中的顯示Server path的wtpwebapps目錄下,即目前wrokspace所在目錄下的。metadata子目錄中,如我的wrokspace是D:\workspace,那麼該目錄是:D:\workspace\.metadata\.plugins\org.eclipse.wst.server.core\tmp0\wtpwebapps。

但如果選中上面的這個選項,則不會把項目檔案釋出到該目錄下運作,而是:

web資源目錄是:web項目的WebContent,即maven web項目的src/main/webapp目錄

class檔案目錄是:是目前配置的class檔案的輸出目錄,即maven項目的target/classes目錄

(2)Timeouts

預設情況下start為45秒,stop為15秒,這裡可能需要修改一下start為一個合适大的值,它的意思是當啟動時間超過這裡指定的時間還沒有啟動完成時,就報錯。當我們的項目啟動很耗時的情況下,這顯然不是我們想要的,是以需要修改一下這個值。

勾選上Server Options->Serve Modules without publishing,不勾的話,修改類檔案裡就會不停的重新開機Web伺服器;如果Web項目啟動時間比較長的話,還需要修改逾時時間,這個在Timeouts裡面設定

優化

找到菜單,Window->Preferences

檢查英文的拼寫沒什麼用處,這裡把拼寫檢查取消,位置:General->Editors->Text Editors->Spelling,把Enable spell checking 取消勾選

還有一處的檢查也可以取消 位置:Validation,勾選Suspend all validators

顯示行号 位置:General->Editors->Text Editors,勾選Show line numbers

把jsp頁面的預設編碼方式改為utf-8 位置:Web->JSP Files,Encoding改為ISO 10646/Unicode(UTF-8)