我有以下 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>
有什么建议么?
提前致谢。