0

我在使用 Play2 和 MongoDB 进行自动重新配置时遇到问题。任何帮助将非常感激。我已将错误日志、编译的应用程序和 application.conf 通过电子邮件发送到 support@cloudfoundry.com..

谢谢!

4

1 回答 1

1

只是为了更新这个线程;

请参阅https://cloudfoundry.atlassian.net/browse/CF-141上提交的票证的评论

我们只为 Postgres 和 MySQL 实现了 Play 自动重新配置。我们想为 Mongo 等附加服务进行自动配置,但需要找到在 Play 应用程序中使用的通用模式(一种可能性是 application.conf 中的通用属性名称)。同时,您可以将连接属性外部化到 application.conf 并使用 CF 提供的在应用启动时解析的属性:mongodb.host=${?cloud.services.mongodb.connection.hostname} mongodb.port=${ ?cloud.services.mongodb.connection.port} mongodb.db=${?cloud.services.mongodb.connection.db} mongodb.username=${?cloud.services.mongodb.connection.username} mongodb.password=$ {?cloud.services.mongodb.connection.password}

于 2012-10-16T15:05:51.310 回答