1. 程式人生 > >idea將maven專案打包成war包並部署

idea將maven專案打包成war包並部署

1.將web專案通過maven打包成war包(pom檔案中的打包方式為war)
在這裡插入圖片描述
2.將war包複製到tomcat的webapps目錄下
在這裡插入圖片描述
3.修改server.xml,在Host配置段中新增如下內容

<Host name="localhost"  appBase="webapps" unpackWARs="true" autoDeploy="true">
	//......
	<Context path="/" docBase="springmvc_restful.war" debug="0" previledge="true" reloadable="true"/>
</Host>

4.執行tomcat/bin目錄下的啟動指令碼檔案startup.bat/startup.sh啟動tomcat
5.通過url如http://localhost:8080/springmvc_restful/items/queryItems進行訪問
在這裡插入圖片描述