sbt服务器不可用

时间:2019-07-04 14:38:30

标签: java playframework sbt

我正在尝试使play-samples-play-java-hello-world-tutorial工作,但它不起作用。

我已从https://www.playframework.com/getting-started下载了Java Hello world 在自述文件中,我应该运行sbt.bat。它下载了几个Maven依赖项并启动了服务器,但是我无法访问它。

现在运行sbt.bat:

C:\play\play-samples-play-java-hello-world-tutorial>.\sbt-dist\bin\sbt.bat
Java HotSpot(TM) 64-Bit Server VM warning: ignoring option MaxPermSize=256m; support was removed in 8.0
[info] Loading settings for project play-samples-play-java-hello-world-tutorial-build from plugins.sbt ...
[info] Loading project definition from C:\play\play-samples-play-java-hello-world-tutorial\project
[info] Loading settings for project root from build.sbt ...
[info] Set current project to play-java-hello-world-web (in build file:/C:/play/play-samples-play-java-hello-world-tutorial/)
[info] sbt server started at local:sbt-server-134f36618ffbf47c6676
[play-java-hello-world-web] $

自述文件告诉我: 3.显示消息Server started, ...后,在浏览器中输入以下URL:http://localhost:9000

但是它不提供网页。我已经准备禁用防火墙,并尝试在端口9000上运行另一个Web服务器,该服务器可以工作。

怎么了?

1 个答案:

答案 0 :(得分:1)

sbt服务器与播放框架服务器不同。您仅启动了sbt控制台。您需要使用命令run启动真实服务器。然后它将在端口9000上可用。