如何使用Java API获取DocumentDB中的集合列表?

时间:2015-06-08 16:53:52

标签: azure azure-cosmosdb nosql

我想使用Java获取DocumentDB中的集合列表。我该怎么做?

1 个答案:

答案 0 :(得分:1)

检查https://github.com/shipunyc/azure-documentdb-java/blob/master/src/com/microsoft/azure/documentdb/test/GatewayTests.java#L356

  

DocumentClient client = new DocumentClient(HOST,MASTER_KEY,ConnectionPolicy.GetDefault(),ConsistencyLevel.Session);   List collections = client.readCollections(this.databaseForTest.getSelfLink(),null).getQueryIterable()。toList();