我目前正在努力控制和反向路由。我的问题是,我有一个控制器位于包controllers.shop.MyController
,我试图反向路由它。当我在controllers
中直接找到控制器时,我会在routes
值中获得相关选项。所以我的问题是,如果我可以在不直接位于包controllers
中的控制器上获得反向路由。
提前致谢
答案 0 :(得分:1)
位于conf / routes
的路线文件中添加以下路线
GET(it should be your HTTP Method) /yourENdPoint controllers.shop.MyController.yourAction
使用以下命令清除运行您的应用:activator clean run
你的反向路线将是
controllers.shop.routes.Mycontroller.yourAction