Hello World 中的 Hello World

如果 Hello World 不提供 Hello World 消息,则不应该使用此名称。所以,让我们做一个。

在文件 app/controllers/HomeController.java 中添加以下方法:

public Result hello() {
    return ok("Hello world!");
}

在你的 conf/routes 文件中,在文件末尾添加以下内容:

GET     /hello                      controllers.HomeController.hello

如果你查看终端,你应该注意 Play 在进行更改并重新加载应用程序时正在编译你的应用程序:

[info] Compiling 4 Scala sources and 1 Java source to /home/YourUserName/HelloWorld/target/scala-2.11/classes...
[success] Compiled in 4s

导航到 localhost:9000 / hello ,我们终于得到了我们的 hello world 消息

StackOverflow 文档