我刚刚创建了一个新的play framework项目,它运行良好。现在,一旦我修改了路由文件(我要做的就是添加GET /popular行):

# Home page
GET     /popular                    controllers.Application.popular()
GET     /                           controllers.Application.index()

# Map static resources from the /public folder to the /assets URL path
GET     /assets/*file               controllers.Assets.at(path="/public", file)


现在在我的控制器中,添加处理程序:

public class Application extends Controller {

    public static Result index() {
        return ok(index.render("Your new application is ready."));
    }

    public static Result popular() {

        ArrayList<String> popular = new ArrayList<String>();
        popular.add("testing");
        popular.add("123");
        return ok(Json.toJson(popular));
    }
}


出于某些原因,尝试访问http://127.0.0.1:9000/popular时出现“找不到动作”。

我只是想尝试一个简单的操作。知道为什么我会收到此错误吗?

最佳答案

显然进入播放控制台并执行clean命令可以解决此问题。如果这不起作用,请尝试手动执行compile命令。

09-16 04:58