当前位置: 代码迷 >> Eclipse >> eclipse环境下使用maven起动jetty:run
  详细解决方案

eclipse环境下使用maven起动jetty:run

热度:407   发布时间:2016-04-23 00:57:28.0
eclipse环境下使用maven启动jetty:run

学习笔记,转自:http://blog.csdn.net/wolfchou/article/details/8633861

?

如果需要使用jetty:run,那么必须在maven的setting.xml下配置

<pluginGroups>    <pluginGroup>org.mortbay.jetty</pluginGroup>  </pluginGroups>

?或者在对应项目的pom.xml中plugins的节点下添加配置

?

?

?

<plugin>                <groupId>org.mortbay.jetty</groupId>                <artifactId>jetty-maven-plugin</artifactId>                <configuration>                    <webApp>                        <contextPath>/</contextPath>                    </webApp>                    <stopKey>webx</stopKey>                    <stopPort>9999</stopPort>                    <connectors>                        <connector implementation="org.eclipse.jetty.server.nio.SelectChannelConnector">                            <port>8081</port>                            <maxIdleTime>60000</maxIdleTime>                        </connector>                    </connectors>                    <requestLog implementation="org.eclipse.jetty.server.NCSARequestLog">                        <filename>target/access.log</filename>                        <retainDays>90</retainDays>                        <append>false</append>                        <extended>false</extended>                        <logTimeZone>GMT+8:00</logTimeZone>                    </requestLog>                    <systemProperties>                        <systemProperty>                            <name>productionMode</name>                            <value>${productionMode}</value>                        </systemProperty>                    </systemProperties>                </configuration>            </plugin>

?

  相关解决方案