标签: playframework
是否可以在Play中重用配置参数来执行此类操作?
mongodb.host=localhost mongodb.port=27017 mongodb.servers = [mongodb.host]
我想从mongodb.host获取值并在mongodb.servers中重用它
答案 0 :(得分:1)
是的,如Play Docs
mongo.host=localhost mongo.port=27017 mongo.servers = ${mongo.host}
您也可以使用系统环境变量。