在conf/routes
文件中,我想禁用一组路由
# disable debug routes
GET /debug-attributes controllers.TagsController.debugTags(lang: String ?= "en-US",url: String ?= "")
到目前为止,我可以覆盖配置值,以便我的控制器在生产中返回404代码,就像路由不存在一样。 (段落:"了解如何")
有没有办法直接禁用路由甚至使用不同的dev / prod conf/routes
文件?
了解如何调试/生产配置
Play - How to use different configuration files for Dev/Prod?