美文网首页
maven Web项目部署(10)

maven Web项目部署(10)

作者: 又是那一片天 | 来源:发表于2017-08-25 14:01 被阅读0次

    步骤:

    1.使用maven创建web项目
    2.配置maven项目
    3.在项目pom.xml配置jetty
    • jetty和tomcat一样都时servlet容器
    • pom.xml的build元素的plugins子元素下
                    <plugin>
                    <!-- 引入坐标 -->
                        <groupId>org.eclipse.jetty</groupId>
                        <artifactId>jetty-maven-plugin</artifactId>
                        <configuration>
                        <!-- 源代码扫描的时间间隔 -->
                            <scanIntervalSeconds>5</scanIntervalSeconds>
                            <connectors>
                            <!-- 端口号 -->
                                <connector implementation="org.eclipse.jetty.server.nio.SelectChannelConnector">
                                    <port>8787</port>
                                    <maxIdleTime>60000</maxIdleTime>
                                </connector>
                            </connectors>
                            <webApp>
                            <!-- url -->
                                <contextPath>/test</contextPath>
                            </webApp>
                        </configuration>
                    </plugin>
    
    4.右击pom.xml > Run As >Maven build
    5.输入clean compile jetty:run 点击Run
    image.png

    部署完成

    要部署到Tomcat把项目打包为war发布就可以了

    相关文章

      网友评论

          本文标题:maven Web项目部署(10)

          本文链接:https://www.haomeiwen.com/subject/scuudxtx.html