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。
IDEA 集成Tomcat7插件运行项目 - 图1


  1. <!-- 编译插件 --><br /> <plugin><br /> <groupId>org.apache.maven.plugins</groupId><br /> <artifactId>maven-compiler-plugin</artifactId><br /> <version>3.5.1</version><br /> <configuration><br /> <source>1.7</source><br /> <target>1.7</target><br /> <encoding>UTF-8</encoding><br /> </configuration><br /> </plugin>
  2. <!-- tomcat插件 --><br /> <plugin><br /> <groupId>org.apache.tomcat.maven</groupId><br /> <artifactId>tomcat7-maven-plugin</artifactId><br /> <version>2.2</version><br /> <configuration><br /> <port>80</port><br /> <path>/SSM</path><br /> <uriEncoding>UTF-8</uriEncoding><br /> <server>tomcat7</server><br /> </configuration><br /> </plugin><br /> </plugins><br /> </build><br />![](https://cdn.nlark.com/yuque/0/2019/gif/306561/1574666886627-a7309b0c-b7db-468a-8061-74fd286682cb.gif#align=left&display=inline&height=20&originHeight=20&originWidth=20&size=0&status=done&width=20)<br /> <br /> <br /> <br />注意上面有底色部分,简要说明一下:<br />path 是访问应用的路径,例如我上面写的是/SSM,则访问路径是 http://localhost/SSM<br />port 是tomcat 的端口号  <br />uriEncoding URL按UTF-8进行编码,这样就解决了中文参数乱码。<br />Server 指定tomcat名称。

IDEA插件运行(重点)

(1)如果在pom.xml中配置了Tomcat插件,在右边的Maven Project中会出现对应的插件,例如:
pom.xml:
IDEA 集成Tomcat7插件运行项目 - 图2

org.apache.tomcat.maven
tomcat7-maven-plugin
2.2

80
/SSM
UTF-8
tomcat7


IDEA 集成Tomcat7插件运行项目 - 图3

IDEA 集成Tomcat7插件运行项目 - 图4

(2)此时运行的时候只需要右击右边的命令,然后可以以run模式或者debug模式启动项目,debug模式可以打断点进行调试
IDEA 集成Tomcat7插件运行项目 - 图5

或者:
点击Run-》Edit Configurations后搜索maven
IDEA 集成Tomcat7插件运行项目 - 图6





启动之后访问项目即可


IDEA使用小结:
  1.运行之后可以点击上面的箭头然后点击Save…. 将运行方式保存起来,下次选择相应的命令然后点击右边的运行按钮(三角)或者调试按钮(虫子)即可以对应的模式运行命令。
    (1)save之前:
        IDEA 集成Tomcat7插件运行项目 - 图7

    (2)save之后选择对应运行的命令然后以对应模式启动即可:
        IDEA 集成Tomcat7插件运行项目 - 图8

    (3)通过三角或虫子上的小绿点可以判断是以哪种模式启动的:
        IDEA 集成Tomcat7插件运行项目 - 图9

  
  2.如果项目中加上tomcat-maven-plugin插件发现点击右边的maven projects也会多出此插件:
例如下面配置集成了两个tomcat插件:
pom.xml
IDEA 集成Tomcat7插件运行项目 - 图10


  1. <!-- 编译插件 --><br /> <plugin><br /> <groupId>org.apache.maven.plugins</groupId><br /> <artifactId>maven-compiler-plugin</artifactId><br /> <version>3.5.1</version><br /> <configuration><br /> <source>1.7</source><br /> <target>1.7</target><br /> <encoding>UTF-8</encoding><br /> </configuration><br /> </plugin>
  2. <!-- tomcat6插件 --><br /> <plugin><br /> <groupId>org.codehaus.mojo</groupId><br /> <artifactId>tomcat-maven-plugin</artifactId><br /> <version>1.1</version><br /> <configuration><br /> <path>/SSM</path><br /> <port>8080</port><br /> <uriEncoding>UTF-8</uriEncoding><br /> <server>tomcat6</server><br /> </configuration><br /> </plugin><br /> <!-- tomcat7插件 --><br /> <plugin><br /> <groupId>org.apache.tomcat.maven</groupId><br /> <artifactId>tomcat7-maven-plugin</artifactId><br /> <version>2.2</version><br /> <configuration><br /> <port>80</port><br /> <path>/SSM</path><br /> <uriEncoding>UTF-8</uriEncoding><br /> <server>tomcat7</server><br /> </configuration><br /> </plugin><br /> </plugins><br /> </build><br />![](https://cdn.nlark.com/yuque/0/2019/gif/306561/1574666886718-93af6017-8848-41ed-81e8-43c8ff5fc734.gif#align=left&display=inline&height=20&originHeight=20&originWidth=20&size=0&status=done&width=20)<br /> <br /> <br />** 发现右边会两个插件同时出现,也就是右边的插件随pom.xml变动,此时选择对应的插件运行即可**<br />![](https://cdn.nlark.com/yuque/0/2019/png/306561/1574666886785-c1f4544e-5cc4-4c67-8918-0de9987ff143.png#align=left&display=inline&height=611&originHeight=611&originWidth=533&size=0&status=done&width=533)<br /> <br /> <br /> <br /> <br /> <br />**下面介绍几个常用的Goal**<br />![](https://cdn.nlark.com/yuque/0/2019/gif/306561/1574666886653-1ef378d7-6840-45b3-a64a-115334caf241.gif#align=left&display=inline&height=20&originHeight=20&originWidth=20&size=0&status=done&width=20)<br />命令 描述<br />tomcat7:deploy 部署一个web war包<br />tomcat7:reload 重新加载web war包<br />tomcat7:start

启动tomcat
tomcat7:stop

停止tomcat
tomcat7:undeploy

停止一个war包
tomcat7:run 启动嵌入式tomcat ,并运行当前项目
IDEA 集成Tomcat7插件运行项目 - 图11



tomcat-maven-plugin 插件使用

配置

在pom.xm 加入以下xml。
IDEA 集成Tomcat7插件运行项目 - 图12

org.codehaus.mojo
tomcat-maven-plugin
1.1

/wp
8080
UTF-8
tomcat6


IDEA 集成Tomcat7插件运行项目 - 图13
具体配置一样。

插件使用

在这里要注意一下,该插件命名方式有些不同,比如启动tomcat ,对应的目标命令是: tomcat:run ,同样,其它命令也是这样,需要更改为:tomcat:<插件执行点>

关于部署项目到独立的Tomcat下面参考:http://www.cnblogs.com/qlqwjy/p/8232429.html