scala play 框架反向路由和控制器
scala play framework reverse routing and controllers
我目前正在为控制器和反向路由而苦恼。我的问题是,我有一个位于包 controllers.shop.MyController
中的控制器,我正在尝试反向路由它。当我直接在 controllers
中找到控制器时,我在 routes
值中获得了相关选项。所以我的问题是我是否可以在不直接位于包 controllers
.
中的控制器上获得反向路由
提前致谢
在位于 conf/routes
的路由文件中
添加以下路线
GET(it should be your HTTP Method) /yourENdPoint controllers.shop.MyController.yourAction
使用以下命令清理 运行 您的应用:activator clean run
您的反向路线将是
controllers.shop.routes.Mycontroller.yourAction
我目前正在为控制器和反向路由而苦恼。我的问题是,我有一个位于包 controllers.shop.MyController
中的控制器,我正在尝试反向路由它。当我直接在 controllers
中找到控制器时,我在 routes
值中获得了相关选项。所以我的问题是我是否可以在不直接位于包 controllers
.
提前致谢
在位于 conf/routes
的路由文件中添加以下路线
GET(it should be your HTTP Method) /yourENdPoint controllers.shop.MyController.yourAction
使用以下命令清理 运行 您的应用:activator clean run
您的反向路线将是
controllers.shop.routes.Mycontroller.yourAction