Play 2.x中是否存在“配置环境”?

时间:2013-05-16 13:29:10

标签: playframework playframework-2.1

在Play 1.x中,您可以为生产和开发环境定义不同的配置:

# These are applied in the default 'dev' enviornment.
db=mem
mail.smtp=mock

# The following are only relevant if 'play id' = prod
%prod.db=mysql://prod@db.us.com/
%prod.mail.smtp.host=in.mailjet.com
%prod.mail.smtp.user=mailuser
%prod.mail.smtp.pass=pass
%prod.mail.smtp.channel=ssl

Play 2有类似的东西吗?

1 个答案:

答案 0 :(得分:3)

它不存在,但您可以告诉play使用特定的配置文件(您可以拥有一个“prod”文件,其中可以包含基本配置文件,并仅覆盖所需的属性)。

请参阅本文档页面中的“指定备用配置文件”部分:http://www.playframework.com/documentation/2.1.1/ProductionConfiguration