天天看點

Web項目重命名

原來項目名稱是 PetStore

部署到tomcat輸http://localhost:8080/PetStore浏覽首頁

把項目名改成MyPetStore

解決方案:

右擊項目名->Refactor->Rename->new name: MyPetStore

右擊項目名->Properties->Web Project Setting-> Context Root: MyPetStore

實際上更改的檔案:

.project : /projectDescription/name:MyPetStore

.settings/.eclipse.wst.common.component:

<wb-module deploy-name="MyPetStore">

<property name="context-root" value="MyPetStore"/>

記得把釋出到tomcat的工程删掉(包括webapps和work目錄),重新部署下.

更名後的通路位址: http://localhost:8080/MyPetStore

繼續閱讀