您好,登錄后才能下訂單哦!
一、配置
默認前兩個是沒有勾選的,應該勾選上:
(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里面設置
在Cotext節點中有一個reloadable='true'屬性,將它改為false,可以在修改java文件后不用重啟服務器即可生效,但是不包括新建java文件、添加方法和變量的操作
二、瀏覽文件
Context節點單獨生成的文件:
原來Tomcat安裝目錄下conf/server.xml中的Context節點(勾選第二個選項之后,server.xml中就不存在這個節點了):
<Host appBase="webapps" autoDeploy="true" name="localhost" unpackWARs="true"> <Valve className="org.apache.catalina.valves.AccessLogValve" directory="logs" pattern="%h %l %u %t "%r" %s %b" prefix="localhost_access_log" suffix=".txt"/> <Context docBase="D:\workspace\workspace(eclipse)\Shop\WebContent" path="/Shop" reloadable="true" source="org.eclipse.jst.jee.server:Shop"> <Resources> <PreResources base="D:\workspace\workspace(eclipse)\Shop\build\classes" classLoaderOnly="false" className="org.apache.catalina.webresources.DirResourceSet" internalPath="/" webAppMount="/WEB-INF/classes"/> </Resources> </Context> </Host>
三、原因
1.勾選第一個是為了防止出現警告:
警告: A docBase D:/Tomcat/webapps/Shop inside the host appBase has been specified, and will be ignored
勾選后表示讓tomcat直接使用eclipse中的WebContent下的東西
省去publish到<workspace>.metadata.pluginsorg.eclipse.wst.server.coretmp0webapps
并將tmp0webapps下相關的resources刪除,
同時會修改<workspace>.metadata.pluginsorg.eclipse.wst.server.coreservers.xml中的serveModulesWithoutPublish=true以及tmp0/conf/server.xml中的<Context>配置
2.勾選第二個是為了防止出現警告:
警 告: [SetPropertiesRule]{Server/Service/Engine/Host/Context} Setting property 'source' to 'org.eclipse.jst.j2ee.server:strut2demo' did not find a matching property.
[SetPropertiesRule]警告的原因是Tomcat6.0以上的server.xml的context節點中不再支持source屬性了。具體說明如下:
For Tomcat 6, unlike Tomcat 4.x, it is NOT recommended to place <Context> elements directly in the server.xml file. This is because it makes modifying the Context configuration more invasive since the main conf/server.xml file cannot be reloaded without restarting Tomcat.
優化
找到菜單,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)
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。