Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Play Framework Routes not working

I am just trying to follow along with the ZenTasks tutorial (http://www.playframework.com/documentation/2.1.0/JavaGuide4) for the Play Framework. I can't seem to even get the Login page to work however.

I am running this project with the play ~run command. When navigating to http://localhost:9000/login the error is

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)`

My routes file looks like

# 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)

and the Application.login, authenticate, and logout functions all compile properly. Am I missing something incredibly easy here, because I can't tell what is going wrong?

like image 972
Bert B. Avatar asked May 23 '13 03:05

Bert B.


2 Answers

Looks like the routes file wasn't compiled properly. probably, you should do a clean in the play console and try again

$ play clean-all
like image 161
Tapan Chandra Avatar answered Oct 02 '22 03:10

Tapan Chandra


@DiAlex

Just in case play clean-all doesn't work, you can try to

$ clean 

then

$ compile

within the play console.

However, I think both of them do the same thing.

like image 34
tebesfinwo Avatar answered Oct 02 '22 02:10

tebesfinwo