设置“root” Maven Jetty 插件的上下文路径
我有以下 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>
有什么建议吗?
提前致谢。
I have the following Maven code snippet
<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>
I want to set context path to "/" but the Jetty plugin doesn't respect it, the context falls back to using the folder (or maybe the module) name as the context path. If I set a context path with a name, for example:
<contextPath>/thomas</contextPath>
Any suggestions?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
FWIW 这就是您 8 号码头所需要的
FWIW this is what you need for jetty 8
这对我来说适用于 Jetty 6(版本 8 和 9 参见 Michael McCallum 的答案):
希望有帮助。
(通常我在提供赏金后就开始工作了!!)
This works for me with Jetty 6 (Version 8 and 9 see the answer from Michael McCallum):
Hope it helps.
(Typically I got it working just after offering the bounty!!)
确实有效(当前版本示例):
Really works (current version example):
有用!看看这个:
It works! look this :