我是 Java 的新手,我正在为一个项目使用 play framework 2.0,并且想知道如何使用反向路由功能。我们有以下内容:
在路由文件中
GET / controllers.Application.index()
GET /myapp/storage controllers.myapp.AnotherController.index()
所以要使用反向路由:
controllers.routes.ref.Application.index()
但是呢AnotherController
?
如果我controllers.routes.ref.AnotherController.index()
在测试中使用,播放框架会抛出错误“找不到符号”。
谢谢。