maven整合tomcat外掛釋出web專案
阿新 • • 發佈:2018-12-27
本地環境
jdk1.7 64位 maven3.2 tomcat7 eclipse4.5
tomcat7使用者及許可權配置
在tomcat伺服器下的conf目錄下,找到tomcat-users.xml,新增manager許可權的使用者。這裡我把所用的許可權都新增給admin使用者了,具體程式碼如下:
<role rolename="admin-gui"/>
<role rolename="admin-script"/>
<role rolename="manager-gui"/>
<role rolename="manager-script" />
<role rolename="manager-jmx"/>
<role rolename="manager-status"/>
<user username="admin" password="admin" roles="manager-gui,manager-script,manager-jmx,manager-status,admin-script,admin-gui"/>
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 1
- 2
- 3
- 4
- 5
- 6
- 7
Maven的server配置
在Maven的安裝路徑找到conf目錄下的setting.xml檔案,在節點中新增tomcat7下配置的使用者資訊(id可以任意填寫,但username和password必須和步驟1一致)
<server>
<id>tomcat7</id>
<username>admin</username>
<password>admin</password>
</server>
- 1
- 2
- 3
- 4
- 5
- 1
- 2
- 3
- 4
- 5
備註:這裡的使用者名稱和密碼必須與上訴中配置的使用者名稱和密碼一致
web中pom.xml配置
<build>
<finalName>webdemo</finalName>
<plugins>
<!-- 指定編譯jdk為1.7 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.3</version>
<configuration>
<target>1.7</target>
<resource>1.7</resource>
</configuration>
</plugin>
<!-- tomcat7外掛 -->
<plugin>
<groupId>org.apache.tomcat.maven</groupId>
<artifactId>tomcat7-maven-plugin</artifactId>
<version>2.2</version>
<configuration>
<path>/${project.build.finalName}</path>
<port>8080</port>
<uriEncoding>UTF-8</uriEncoding>
<finalName>${project.build.finalName}</finalName>
<!-- 名稱必須與配置檔案的id名稱一致 -->
<server>tomcat7</server>
</configuration>
<!-- 在打包週期執行tomcat7 -->
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
專案右擊Run As –Maven build…然後輸入:tomcat7:run 看到如下資訊表示啟動成功。
注意必須輸入的是tomcat7 因為是根據pom.xml配置中server中的id名稱而來。
如下截圖所示:
瀏覽器訪問是否成功
在瀏覽器中輸入:localhost:8080/webdemo
一下資訊表示tomcat釋出web專案成功。
注意這裡與jetty訪問不同的是配置了專案名
maven整合tomcat外掛常見命令如下
tomcat7:deploy 部署一個web war包
tomcat7:reload 重新載入web war包
tomcat7:start 啟動tomcat
tomcat7:stop 停止tomcat
tomcat7:undeploy 停止一個war包
tomcat7:run 啟動嵌入式tomcat ,並運行當前專案