2

プレイは完璧に実行されましたが、サンプルプロジェクトフォームをロードして少し変更しました。そして今、私は自分では解決できない問題を経験しています。

私のルートは次のようになります。

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

# Home page
GET     /                           controllers.Login.blank()
# Login
GET     /login                      controllers.Login.blank()
# Signup
GET     /signup                     controllers.SignUp.blank()
GET     /users/fakeuser             controllers.SignUp.edit()
POST    /signup                     controllers.SignUp.submit()

# Contact
GET     /contacts                   controllers.Contacts.blank()
GET     /contacts/fakecontact       controllers.Contacts.edit()
POST    /contacts                   controllers.Contacts.submit()

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

ご覧のとおり、最初の2行はLogin.blank()にリダイレクトされています。

問題は私がそうする場合です:

cd forms
play
run

そして、localhost:9000/loginに移動します

次のエラーが発生します。

Action not found
1GET/controllers.Application.index()
2GET/signupcontrollers.SignUp.blank()
3GET/users/fakeusercontrollers.SignUp.edit()
4POST/signupcontrollers.SignUp.submit()
5GET/contactscontrollers.Contacts.blank()
6GET/contacts/fakecontactcontrollers.Contacts.edit()
7POST/contactscontrollers.Contacts.submit()
8GET/assets/$file<.+>controllers.Assets.at(path:String = "/public", file:String)

ご覧のとおり、Play!ルートファイルを更新しませんでした。古いものを使用しています。

どうすればこれを修正できますか?

4

1 に答える 1

4

を実行してplay cleanからplay run

時々、Playはroutesファイルに問題があります。

于 2012-08-04T11:24:04.003 に答える