Spring Cloud 数据流 - Cloudfoundry 服务器 (v1.0.0.M4)
在尝试在属性文件中外部化配置信息,然后在安装时使用 Spring Cloud Config Server 提供这些环境设置时,我有一个关于我通常会在 YML 中以某种方式放置的一些值的问题显现。
首先,在 YML 清单中,我可以这样定义它们:
JAVA_OPTS: -Dhttp.keepAlive=false
MAVEN_REMOTE_REPOSITORIES_SNAPSHOTS_URL: <nexus url>
MAVEN_REMOTE_REPOSITORIES_RELEASES_URL: <another nexus url>
那么我如何将这些放入属性文件中呢?这是我的猜测:
java.opts=-Dhttp.keepAlive=false
maven.remote.repositories.snapshots.url=<nexus url>
maven.remote.repositories.releases.url=<another nexus url>