我有一个PlayFramework应用程序,我有多个自定义模块,我想通过application.conf加载。我不确定指定此内容的确切语法是什么。我试过了:
enabled += [com.somemodule, com.othermodule]
和
enabled += ["com.somemodule","com.othermodule"]
但不起作用。指定模块列表的格式是什么?
答案 0 :(得分:0)
每个模块只需添加一行:
play.modules.enabled += "com.acme.SomeModule"
play.modules.enabled += "com.acme.OtherModule"
HOCON的语法为append an array to another,但我不推荐它:
play.modules.enabled = ${?play.modules.enabled} [ "com.acme.SomeModule", "com.acme.OtherModule" ]