In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-01-20 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >
Share
Shulou(Shulou.com)06/03 Report--
Requirements: query a type in mongodb (possibly millions of pieces of data in the database) to use as a drop-down list query.
This can be achieved with db.getCollection ('order'). Distinct ("typeName") in the tool.
Java Code:
MongoCollection coll = this.client.getDatabase (this.databaseName) .getCollection ('order')
/ / get the getCollection table name of the mongodb database connection
/ / this.databaseName reads the dynamic configuration directly from the configuration file, that is, the database name
Iterable iterable = coll.distinct ('typeName',String)
/ / what is the value type of String query? since this query is in Chinese characters, it is String.
MongoCursor it = iterable.iterator ()
While (it.hasNext ()) {
String typeName = it.next () .toString ()
System.out.pringln (typeName)
}
/ * MongoCollection: com.mongodb.client.MongoCollection Document:org.bson.Document implements Map, Serializable, Bson * * /
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.