eclipse运行maven web项目

说在前面:Maven项目对象模型(POM),可以通过一小段描述信息来管理项目的构建,报告和文档的软件项目管理工具。现在好多公司都在使用。有时候我们想在eclipse启动maven项目,怎么操作呢,下面我来给大家来分享一下方法。

  • 所需工具

eclipse, JDK1.7, maven 3.2.1, tomcat7.0.42

1、当作普通javaWeb发布运行

<1>新建server,如下图:
eclipse运行maven web项目_第1张图片
<2>发布项目,如下图
eclipse运行maven web项目_第2张图片
eclipse运行maven web项目_第3张图片
<3>启动项目,如下图:
eclipse运行maven web项目_第4张图片
eclipse运行maven web项目_第5张图片
<4>启动成功。浏览器访问。如下图:
eclipse运行maven web项目_第6张图片
2、使用 Maven tomcat:run运行web,如下图:

<1>配置pom.xml,如下图:
eclipse运行maven web项目_第7张图片
<2>运行项目,选择项目,单击右键 Run As - >Maven Bulid。如下图:
eclipse运行maven web项目_第8张图片
<3>输入tomcat启动命令,点击run启动项目。如下图:
eclipse运行maven web项目_第9张图片
<4>启动项目。如下图:

eclipse运行maven web项目_第10张图片

<5>启动成功,浏览器访问。如下图:
eclipse运行maven web项目_第11张图片
3、jetty插件运行
<1>配置pom.xml,如下

<build>
        <finalName>tianti-module-interfacefinalName>
        <plugins>
            <plugin>
                <groupId>org.mortbay.jettygroupId>
                <artifactId>jetty-maven-pluginartifactId>
                <version>8.1.16.v20140903version>
                <configuration>
                    
                    <httpConnector>
                        <port>8082port>
                    httpConnector>
                    <scanIntervalSeconds>3scanIntervalSeconds>
                    <webApp>
                        <contextPath>/tianti-module-interfacecontextPath>
                    webApp>
                configuration>
            plugin>
        plugins>
    build>

<2>运行项目,选择项目,单击右键 Run As - >Maven Bulid。

-Djetty.port=8082 jetty:run

你可能感兴趣的:(开发工具,maven)