在 SBT 0.10 中指定 Jetty 端口

发布于 2024-11-18 02:14:24 字数 339 浏览 5 评论 0原文

我需要使用 SBT 0.10 在不同于默认 8080 的端口上运行嵌入式 Jetty SBT 0.7 的问题在这里得到了解答 - 当从 sbt 在开发模式下运行 lift web 应用程序时,我需要在哪个文件中添加 jetty 端口的覆盖?。 我找不到对 SBT 0.10 执行相同操作的参考 我正在使用多模块的完整配置(Build.scala),而不是快速使用 sbt dsl。

I need to run the embedded Jetty on port different to the default 8080, using SBT 0.10
The question was answered here for SBT 0.7 - In which file do I need to add an override for the jetty port when running a lift webapp in dev mode from sbt?.
I can find no reference to do the same for SBT 0.10
I am using the Full configuration (Build.scala) for multi modules and not quick the sbt dsl.

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

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

发布评论

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

评论(2

随遇而安 2024-11-25 02:14:24

在 SBT 0.10 中,Jetty 支持不再作为构建工具的一部分,而是作为 插件。为了更改端口,您必须使用您的值初始化 jettyPort 设置:

jettyPort := 1111

或者,如果您从控制台运行:

set jettyPort := 1111
session save

请参阅插件说明以获取更多详细信息。

In SBT 0.10 Jetty support no longer goes as a part of the build tool, but rather shipped as a plugin. In order to change the port, you'll have to initialize jettyPort setting with your value:

jettyPort := 1111

Or, if you're running from the console:

set jettyPort := 1111
session save

See plugin instructions for more details.

困倦 2024-11-25 02:14:24

对于 sbt 0.11.2 ,您

port in container.Configuration := 8081

在 build.sbt 中指定

For sbt 0.11.2 , you specify

port in container.Configuration := 8081

in build.sbt

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