java – Play Framework路由不起作用

前端之家收集整理的这篇文章主要介绍了java – Play Framework路由不起作用前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我只是想跟随Play框架的ZenTasks教程( http://www.playframework.com/documentation/2.1.0/JavaGuide4).我似乎无法让登录页面工作.

我正在使用play~stun命令运行这个项目.导航到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函数都可以正确编译.我在这里错过了一些非常容易的东西,因为我不知道出了什么问题?

解决方法

看起来路由文件未正确编译.可能,你应该在游戏机上做一个干净,然后再试一次
$play clean-all
原文链接:https://www.f2er.com/java/127718.html

猜你在找的Java相关文章