Maven 集成Tomcat插件(引用)

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

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

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

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

 

tomcat-maven-plugin  插件使用

配置

在pom.xml 加入如下xml。maven

<plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>tomcat-maven-plugin</artifactId> <version>1.1</version> <configuration> <path>/wp</path> <port>8080</port> <uriEncoding>UTF-8</uriEncoding> <url>http://localhost:8080/manager/html</url> <server>tomcat6</server> </configuration> </plugin>

 

簡要說明一下:ui

path  是訪問應用的路徑編碼

port 是tomcat 的端口號url

uriEncoding  URL按UTF-8進行編碼,這樣就解決了中文參數亂碼。spa

Server 指定tomcat名稱。.net

配置就這麼簡單,基本搞掂,下面看看如何使用。

插件運行

 

若是Eclipse 安裝了Maven插件,選 擇pom.xml文件,擊右鍵——>選擇 Run As——> Maven build 。

image

 

若是是第一次運行,會彈出下面對話框。在Goals框加加入如下命令: tomcat:run

 

image

這樣Tomcat 插件就能夠運行。

下面介紹幾個經常使用的Goal

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

tomcat:start

啓動tomcat

tomcat:stop

中止tomcat

tomcat:undeploy

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

tomcat7-maven-plugin 使用

配置

 

兩個插件使用方法基本同樣,一樣須要在pom.xml引用該插件,須要增長如下配置

 

<plugin> <groupId>org.apache.tomcat.maven</groupId> <artifactId>tomcat7-maven-plugin</artifactId> <version>2.1</version> <configuration> <port>9090</port> <path>/mgr</path> <uriEncoding>UTF-8</uriEncoding> <finalName>mgr</finalName> <server>tomcat7</server> </configuration> </plugin>

 

具體配置同樣。

插件使用 

在這裏要注意一下,該插件命名方式有些不一樣,好比啓動tomcat ,對應的目標命令是: tomcat7:run ,一樣,其它命令也是這樣,須要更改成:tomcat7:<插件執行點>

 

 

OK,配置就這麼簡單,若是須要在 tomcat 跟蹤聯調,能夠用Dubug 方式啓動maven命令。以下圖

 

image

 

 

原文地址;http://my.oschina.net/lilw/blog/168667

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

 

tomcat-maven-plugin  插件使用

配置

在pom.xm 加入如下xml。

<plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>tomcat-maven-plugin</artifactId> <version>1.1</version> <configuration> <path>/wp</path> <port>8080</port> <uriEncoding>UTF-8</uriEncoding> <url>http://localhost:8080/manager/html</url> <server>tomcat6</server> </configuration> </plugin>

 

簡要說明一下:

path  是訪問應用的路徑

port 是tomcat 的端口號

uriEncoding  URL按UTF-8進行編碼,這樣就解決了中文參數亂碼。

Server 指定tomcat名稱。

配置就這麼簡單,基本搞掂,下面看看如何使用。

插件運行

 

若是Eclipse 安裝了Maven插件,選 擇pom.xml文件,擊右鍵——>選擇 Run As——> Maven build 。

image

 

若是是第一次運行,會彈出下面對話框。在Goals框加加入如下命令: tomcat:run

 

image

這樣Tomcat 插件就能夠運行。

下面介紹幾個經常使用的Goal

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

tomcat:start

啓動tomcat

tomcat:stop

中止tomcat

tomcat:undeploy

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

tomcat7-maven-plugin 使用

配置

 

兩個插件使用方法基本同樣,一樣須要在pom.xml引用該插件,須要增長如下配置

 

<plugin> <groupId>org.apache.tomcat.maven</groupId> <artifactId>tomcat7-maven-plugin</artifactId> <version>2.1</version> <configuration> <port>9090</port> <path>/mgr</path> <uriEncoding>UTF-8</uriEncoding> <finalName>mgr</finalName> <server>tomcat7</server> </configuration> </plugin>

 

具體配置同樣。

插件使用 

在這裏要注意一下,該插件命名方式有些不一樣,好比啓動tomcat ,對應的目標命令是: tomcat7:run ,一樣,其它命令也是這樣,須要更改成:tomcat7:<插件執行點>

 

 

OK,配置就這麼簡單,若是須要在 tomcat 跟蹤聯調,能夠用Dubug 方式啓動maven命令。以下圖

image

相關文章
相關標籤/搜索