在 Play application.conf中,我有默认值%test
、%stage
和%prod
值:
%stage.application.mode=prod
%prod.application.mode=prod
%test.application.mode=test
#default values
property=someValue
%test.property=testValue
%stage.property=stageValue
%prod.property=prodValue
我无法更改这些,因为它们是在将应用程序部署到相应环境时使用的。
但是,我需要能够在测试模式下启动 Play,以便在本地机器上进行单元测试,其设置与 %test 中的设置不同。
有没有办法添加另一个测试配置,比如使用这些配置%unittest
在测试模式下开始播放(播放测试)?