Play Framework Routes无效

时间:2013-05-23 03:30:33

标签: java playframework playframework-2.0

我只是想跟随Play框架的ZenTasks教程(http://www.playframework.com/documentation/2.1.0/JavaGuide4)。我似乎无法让登录页面工作。

我正在使用play ~run命令运行此项目。导航到http://localhost:9000/login时,错误是

Action not found For request 'GET /login'
These routes have been tried, in this order:
1 GET/controllers.Application.index()
2 GET/assets/$file<.+>controllers.Assets.at(path:String = "/public", file:String)`

我的路线文件看起来像

# Routes
# This file defines all application routes (Higher priority routes first)
# ~~~~

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

# User athentication
GET     /login                      controllers.Application.login()
POST    /login                      controllers.Application.authenticate()
GET     /logout                     controllers.Application.logout()

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

并且Application.login,authenticate和logout函数都可以正确编译。我在这里错过了一些非常容易的东西,因为我不知道出了什么问题?

3 个答案:

答案 0 :(得分:8)

看起来路由文件未正确编译。可能,你应该在游戏机中做一个干净并再试一次

$ play clean-all

答案 1 :(得分:4)

@DiAlex

如果play clean-all不起作用,您可以尝试

$ clean 

然后

$ compile
播放控制台中的

但是,我认为他们都做同样的事情。

答案 2 :(得分:1)

如果您通过Activator使用Play框架,则只需执行以下步骤:

  1. sbt clean
  2. 激活器运行