用于在PlayFramework中指定多个自定义模块的格式

时间:2016-07-05 12:48:47

标签: playframework playframework-2.5 typesafe-config

我有一个PlayFramework应用程序,我有多个自定义模块,我想通过application.conf加载。我不确定指定此内容的确切语法是什么。我试过了:

enabled += [com.somemodule, com.othermodule]

enabled += ["com.somemodule","com.othermodule"]

但不起作用。指定模块列表的格式是什么?

1 个答案:

答案 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" ]