MongoDB
 sql >> Database >  >> NoSQL >> MongoDB

Elenco di tutte le raccolte nel database mongo in java

Ottenere un elenco di raccolteOgni database ha zero o più raccolte. Puoi recuperare un elenco di loro dal db (e stampare quelli che sono lì):

Set<String> colls = db.getCollectionNames();

for (String s : colls) {
System.out.println(s);
}

Modifica :come suggerito nella risposta di @Andrew, il client java aggiornato utilizza questo:

/**
 * Gets the names of all the collections in this database.
 *
 * @return an iterable containing all the names of all the collections in this database
 */
MongoIterable<String> listCollectionNames();

e ottenere la raccolta iterabile in base al tipo di documento :

/**
 * Finds all the collections in this database.
 *
 * @param resultClass the class to decode each document into
 * @param <TResult>   the target document type of the iterable.
 * @return the list collections iterable interface
 * @mongodb.driver.manual reference/command/listCollections listCollections
 */
<TResult> ListCollectionsIterable<TResult> listCollections(Class<TResult> resultClass);