1

jclouds 是否有任何机制可以使用“属性”文件覆盖 org.jclouds.Constants 中的属性?可以在代码中设置属性,但如果您通过 jclouds-cli 使用 jclouds,那将没有用。

4

1 回答 1

1

您可以通过 ContextBuilder.overrides 提供属性:

Properties properties = new Properties();
try (InputStream is = new FileInputStream(new File(...))) {
    properties.load(is);
}

BlobStoreContext blobStoreContext = ContextBuilder
    .newBuilder(BLOBSTORE_TYPE)
    .credentials(IDENTITY, CREDENTIAL)
    .overrides(properties)
    .build();
于 2014-03-04T07:06:42.283 回答