使用Maven Jetty插件设置“root”上下文路径

时间:2011-12-31 02:48:13

标签: maven-jetty-plugin

我有以下Maven代码段

<plugin>
  <!-- http://docs.codehaus.org/display/JETTY/Maven+Jetty+Plugin -->
  <groupId>org.mortbay.jetty</groupId>
  <artifactId>maven-jetty-plugin</artifactId>
  <version>6.1.16</version>
  <configuration>
    <contextPath>/thomas</contextPath>
    <stopPort>9966</stopPort>
    <stopKey>foo</stopKey>
  </configuration>
</plugin>

我想将上下文路径设置为“/”,但Jetty插件不尊重它,上下文回退到使用文件夹(或可能是模块)名称作为上下文路径。如果我使用名称设置上下文路径,例如:

 <contextPath>/thomas</contextPath>

有什么建议吗?

提前致谢。

5 个答案:

答案 0 :(得分:38)

FWIW这是你需要的码头8

<plugin>
 <groupId>org.mortbay.jetty</groupId>
 <artifactId>jetty-maven-plugin</artifactId>
 <version>8.1.7.v20120910</version>
 <configuration>       
   <webApp>
    <contextPath>/</contextPath>
  </webApp>
 </configuration>
</plugin>

答案 1 :(得分:25)

这适用于Jetty 6(第8版和第9版,请参阅Michael McCallum的回答):

           <plugin>
                <groupId>org.mortbay.jetty</groupId>
                <artifactId>maven-jetty-plugin</artifactId>
                <version>6.1.22</version>
                <configuration>
                    <contextPath>/</contextPath>                     
                </configuration>
                ...
            </plugin>

希望它有所帮助。

(通常我在提供赏金之后才开始工作!!)

答案 2 :(得分:3)


真的有效(当前版本示例):

<plugin>
    <groupId>org.eclipse.jetty</groupId>
    <artifactId>jetty-maven-plugin</artifactId>
    <version>9.3.0.M2</version>
    <configuration>
    <webApp>
        <contextPath>/${path}</contextPath>
    </webApp>
    </configuration>
</plugin>

答案 3 :(得分:0)

有效!看这个:

<groupId>org.mortbay.jetty</groupId>
<artifactId>maven-jetty-plugin</artifactId>
<version>6.1.10</version>
<configuration>
    <scanIntervalSeconds>10</scanIntervalSeconds>
    <contextPath>/</contextPath>
    <stopKey>foo</stopKey>
    <stopPort>9999</stopPort>
</configuration>

答案 4 :(得分:0)

  <plugin>
  <groupId>org.eclipse.jetty</groupId>
  <artifactId>jetty-maven-plugin</artifactId>
  <version>9.2.11.v20150529</version>
  <configuration>
    <scanIntervalSeconds>10</scanIntervalSeconds>
    <webApp>
         <contextPath>/yourContextPath</contextPath>
    </webApp>    
  </configuration>
  </plugin>