程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> JAVA編程 >> JAVA綜合教程 >> maven集成tomcat插件以及亂碼解決,maventomcat

maven集成tomcat插件以及亂碼解決,maventomcat

編輯:JAVA綜合教程

maven集成tomcat插件以及亂碼解決,maventomcat


Maven已經是Java的項目管理標配,如何在JavaEE開發使用Maven調用Web應用,是很多同學關心的問題。本文將介紹,Maven如何介紹Tomcat插件。

Maven Tomcat插件現在主要有兩個版本,tomcat-maven-plugin和tomcat7-maven-plugin,使用方式基本相同。

tomcat-maven-plugin 插件官網:http://mojo.codehaus.org/tomcat-maven-plugin/plugin-info.html。

tomcat7-maven-plugin 插件官網:http://tomcat.apache.org/maven-plugin.html。

 

tomcat7-maven-plugin 插件使用

配置

在pom.xm 加入以下xml。

<plugin>
        groupId>org.codehaus.mojo</groupId>
        <artifactId>tomcat-maven-plugin</artifactId>
        <version>1.1</version>
               <configuration>
<!--path  是訪問應用的路徑--> <path>/wp</path>
<!--port 是tomcat 的端口號c--> <port>8080</port>
<!--uriEncoding  URL按UTF-8進行編碼,這樣就解決了中文參數亂碼--> <uriEncoding>UTF-8</uriEncoding> <url>http://localhost:8080/manager/html</url>
<!--Server 指定tomcat名稱。-->
<server>tomcat7</server>
</configuration>
</plugin>


  

插件運行


如果Eclipse 安裝了Maven插件,選 擇pom.xml文件,擊右鍵——>選擇 Run As——> Maven build -->輸入 tomcat7:run -->單擊run運行。

 這樣tomcat7就可以正常運行了。

 

下面介紹幾個常用的Goal

命令 描述 tomcat:deploy 部署一個web war包 tomcat:reload 重新加載web war包

tomcat:start

啟動tomcat

tomcat:stop

停止tomcat

tomcat:undeploy

停止一個war包 tomcat:run 啟動嵌入式tomcat ,並運行當前項目

   

tomcat-maven-plugin 插件使用與tomcat7-maven-plugin 插件使用一致,只要把<server>tomcat7</server>改為<server>tomcat7</server>即可

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved