Routes and subpackages in controllers

前端 未结 3 710
滥情空心
滥情空心 2021-02-19 09:06

I\'m using Play 2.1 and I\'m having some odd problems.

I have a subpackage messages in the controllers package with a class i18n.java

3条回答
  •  时光取名叫无心
    2021-02-19 09:08

    FYI, in 2.2 it's slightly different.

    routes.conf looks like:

    GET  /admin/stuff  controllers.admin.StuffController.show()
    

    in code looks like:

    controllers.admin.routes.StuffController.show()
    

提交回复
热议问题