未检测到 m2eclipse maven-jetty-plugin -Djetty.port=8081

发布于 2024-12-17 03:10:54 字数 230 浏览 2 评论 0原文

我在 m2eclipse 运行配置中的目标如下:

jetty:run-exploded -e -Djetty.port=8081

但是,服务器仍然在 8080 上启动。将其更改为 -e -Djetty.port=8081 jetty:run -爆炸没有帮助。

这不是 m2eclipse 问题。运行 mvn -e -Djetty.port=8081 jetty:run-exploded 不起作用

I have the following as my goal in a m2eclipse run configuration:

jetty:run-exploded -e -Djetty.port=8081

However, the server is still started on 8080. Changing it to -e -Djetty.port=8081 jetty:run-exploded does not help.

This is not a m2eclipse issue. Running mvn -e -Djetty.port=8081 jetty:run-exploded does not work

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

最美的太阳 2024-12-24 03:10:54

在指定了 jetty 插件的 pom.xml 中,检查您是否使用 jettyConfig 标签。该标签允许您以 xml 格式 http://docs.codehaus 指定 jetty 的配置。 org/display/JETTY/jetty.xml 了解更多信息。无论如何,在此配置中有一个部分,您可以在其中设置连接器,并在其中指定端口。另外,通过这种方式配置,您在运行 maven 命令时不必指定 -Djetty.port=8081 。

In your pom.xml where you have your jetty plugin specified, check to see if you are using the jettyConfig tag. That tag allows you to specify configurations for jetty in an xml format http://docs.codehaus.org/display/JETTY/jetty.xml for more info. Anyway, in this config there is a section where you can set a connector and in their you can specify the port. Also, by configuring it this way you will not have to specify the -Djetty.port=8081 when running the maven command.

葬花如无物 2024-12-24 03:10:54

您也可以在配置之前指定 Djetty 标志,例如在命令行中使用 jetty:run-exploded -e -Djetty -Djetty.port=8081

you could also just specify the Djetty flag before configuring it, such as jetty:run-exploded -e -Djetty -Djetty.port=8081 in command line

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文