1

我是玩框架的新手。我已经下载了最新版本 (2.1.1) 我正在尝试按照视频教程http://www.playframework.com/中的步骤进行操作,但是当我对代码进行任何更改时,保存它然后刷新 localhost:9000 - 它仍然显示旧页面。我也试过:“play clean”,“play compile”,还是没有结果。有什么建议么?我正在使用 javac 1.7.0._21 并通过 eclipse 进行更改。

4

3 回答 3

2

尝试使用~ run,而不是即

[My first application] $ ~ run

这应该在您每次进行更改时重新编译代码。以下页面包含更多信息:http ://www.playframework.com/documentation/2.1.1/PlayConsole

于 2013-05-29T16:08:45.393 回答
0

我使用 intelij 作为我的编辑器,在进行编辑和刷新之前,我使用以下命令启动应用程序:

play debug run

你应该看到这样的东西开始......

....
[info] Done updating.
--- (Running the application from SBT, auto-reloading is enabled) ---

[info] play - Listening for HTTP on /0:0:0:0:0:0:0:0:9000

(Server started, use Ctrl+D to stop and go back to the console...)
于 2013-05-11T04:48:26.363 回答
0

在您的build.sbt中,更改此行:

fork in run := true

fork in run := false
于 2016-11-22T04:18:55.947 回答