分享一下我经常用到的自己写的mongo用法示例

该示例基于当前最新的mongo驱动,版本为mongo-2.10.1.jar,用junit写的单元测试。

TestCase.java

  1. package com.wujintao.mongo;
  2. import java.net.UnknownHostException;
  3. import java.util.ArrayList;
  4. import java.util.List;
  5. import java.util.Set;
  6. import java.util.regex.Pattern;
  7. import org.junit.Test;
  8. import com.mongodb.AggregationOutput;
  9. import com.mongodb.BasicDBList;
  10. import com.mongodb.BasicDBObject;
  11. import com.mongodb.BasicDBObjectBuilder;
  12. import com.mongodb.DB;
  13. import com.mongodb.DBCollection;
  14. import com.mongodb.DBCursor;
  15. import com.mongodb.DBObject;
  16. import com.mongodb.MapReduceCommand;
  17. import com.mongodb.MapReduceOutput;
  18. import com.mongodb.Mongo;
  19. import com.mongodb.QueryBuilder;
  20. import com.mongodb.WriteConcern;
  21. public class TestCase {
  22. //DBCursor cursor = coll.find(condition).addOption(Bytes.QUERYOPTION_NOTIMEOUT);//设置游标不要超时
  23. @Test
  24. /**
  25. * 获取所有数据库实例
  26. */
  27. public void testGetDBS() {
  28. List<String> dbnames = MongoUtil.getMong().getDatabaseNames();
  29. for (String dbname : dbnames) {
  30. System.out.println("dbname:" + dbname);
  31. }
  32. }
  33. @Test
  34. /**
  35. * 删除数据库
  36. */
  37. public void dropDatabase() {
  38. MongoUtil.getMong().dropDatabase("my_new_db");
  39. }
  40. @Test
  41. /**
  42. * 查询所有表名
  43. */
  44. public void getAllCollections() {
  45. Set<String> colls = MongoUtil.getDB().getCollectionNames();
  46. for (String s : colls) {
  47. System.out.println(s);
  48. }
  49. }
  50. @Test
  51. public void dropCollection() {
  52. MongoUtil.getColl("jellonwu").drop();
  53. }
  54. /**
  55. * 添加一条记录
  56. */
  57. @Test
  58. public void addData() {
  59. DBCollection coll = MongoUtil.getColl("wujintao");
  60. BasicDBObject doc = new BasicDBObject();
  61. doc.put("name", "MongoDB");
  62. doc.put("type", "database");
  63. doc.put("count", 1);
  64. BasicDBObject info = new BasicDBObject();
  65. info.put("x", 203);
  66. info.put("y", 102);
  67. doc.put("info", info);
  68. coll.insert(doc);
  69. // 设定write concern,以便操作失败时得到提示
  70. coll.setWriteConcern(WriteConcern.SAFE);
  71. }
  72. @Test
  73. /**
  74. * 创建索引
  75. */
  76. public void createIndex() {
  77. MongoUtil.getColl("wujintao").createIndex(new BasicDBObject("i", 1));
  78. }
  79. @Test
  80. /**
  81. * 获取索引信息
  82. */
  83. public void getIndexInfo() {
  84. List<DBObject> list = MongoUtil.getColl("hems_online").getIndexInfo();
  85. for (DBObject o : list) {
  86. System.out.println(o);
  87. }
  88. }
  89. @Test
  90. /**
  91. * 添加多条记录
  92. */
  93. public void addMultiData() {
  94. for (int i = 0; i < 100; i++) {
  95. MongoUtil.getColl("wujintao").insert(
  96. new BasicDBObject().append("i", i));
  97. }
  98. List<DBObject> docs = new ArrayList<DBObject>();
  99. for (int i = 0; i < 50; i++) {
  100. docs.add(new BasicDBObject().append("i", i));
  101. }
  102. MongoUtil.getColl("wujintao").insert(docs);
  103. // 设定write concern,以便操作失败时得到提示
  104. MongoUtil.getColl("wujintao").setWriteConcern(WriteConcern.SAFE);
  105. }
  106. @Test
  107. /**
  108. * 查找第一条记录
  109. */
  110. public void findOne() {
  111. DBObject myDoc = MongoUtil.getColl("wujintao").findOne();
  112. System.out.println(myDoc);
  113. }
  114. @Test
  115. /**
  116. * 获取表中所有记录条数
  117. */
  118. public void count() {
  119. System.out.println(MongoUtil.getColl("wujintao").getCount());
  120. System.out.println(MongoUtil.getColl("wujintao").count());
  121. }
  122. @Test
  123. /**
  124. * 获取查询结果集的记录数
  125. */
  126. public void getCount() {
  127. DBObject query = new BasicDBObject("name", "a");
  128. long count = MongoUtil.getColl("wujintao").count(query);
  129. System.out.println(count);
  130. }
  131. @Test
  132. /**
  133. * 查询所有结果
  134. */
  135. public void getAllDocuments() {
  136. DBCursor cursor = MongoUtil.getColl("wujintao").find();
  137. try {
  138. while (cursor.hasNext()) {
  139. System.out.println(cursor.next());
  140. }
  141. } finally {
  142. cursor.close();
  143. }
  144. }
  145. @Test
  146. /**
  147. * 按照一个条件查询
  148. */
  149. public void queryByConditionOne() {
  150. BasicDBObject query = new BasicDBObject();
  151. query.put("name", "MongoDB");
  152. DBCursor cursor = MongoUtil.getColl("wujintao").find(query);
  153. try {
  154. while (cursor.hasNext()) {
  155. System.out.println(cursor.next());
  156. }
  157. } finally {
  158. cursor.close();
  159. }
  160. }
  161. @Test
  162. /**
  163. * AND多条件查询,区间查询
  164. */
  165. public void queryMulti() {
  166. BasicDBObject query = new BasicDBObject();
  167. // 查询j不等于3,k大于10的结果集
  168. query.put("j", new BasicDBObject("$ne", 3));
  169. query.put("k", new BasicDBObject("$gt", 10));
  170. DBCursor cursor = MongoUtil.getColl("wujintao").find(query);
  171. try {
  172. while (cursor.hasNext()) {
  173. System.out.println(cursor.next());
  174. }
  175. } finally {
  176. cursor.close();
  177. }
  178. }
  179. @Test
  180. /**
  181. * 区间查询
  182. * select * from table where i >50
  183. */
  184. public void queryMulti2() {
  185. BasicDBObject query = new BasicDBObject();
  186. query = new BasicDBObject();
  187. query.put("i", new BasicDBObject("$gt", 50)); // e.g. find all where i >
  188. DBCursor cursor = MongoUtil.getColl("wujintao").find(query);
  189. try {
  190. while (cursor.hasNext()) {
  191. System.out.println(cursor.next());
  192. }
  193. } finally {
  194. cursor.close();
  195. }
  196. }
  197. @Test
  198. /**
  199. * 区间查询
  200. * select * from table where 20 < i <= 30
  201. //比较符
  202. //"$gt": 大于
  203. //"$gte":大于等于
  204. //"$lt": 小于
  205. //"$lte":小于等于
  206. //"$in": 包含
  207. */
  208. public void queryMulti3() {
  209. BasicDBObject query = new BasicDBObject();
  210. query = new BasicDBObject();
  211. query.put("i", new BasicDBObject("$gt", 20).append("$lte", 30));
  212. DBCursor cursor = MongoUtil.getColl("wujintao").find(query);
  213. try {
  214. while (cursor.hasNext()) {
  215. System.out.println(cursor.next());
  216. }
  217. } finally {
  218. cursor.close();
  219. }
  220. }
  221. /**
  222. * 组合in和and select * from test_Table where (a=5 or b=6) and (c=5 or d = 6)
  223. */
  224. public void queryMulti4() {
  225. BasicDBObject query11 = new BasicDBObject();
  226. query11.put("a", 1);
  227. BasicDBObject query12 = new BasicDBObject();
  228. query12.put("b", 2);
  229. List<BasicDBObject> orQueryList1 = new ArrayList<BasicDBObject>();
  230. orQueryList1.add(query11);
  231. orQueryList1.add(query12);
  232. BasicDBObject orQuery1 = new BasicDBObject("$or", orQueryList1);
  233. BasicDBObject query21 = new BasicDBObject();
  234. query21.put("c", 5);
  235. BasicDBObject query22 = new BasicDBObject();
  236. query22.put("d", 6);
  237. List<BasicDBObject> orQueryList2 = new ArrayList<BasicDBObject>();
  238. orQueryList2.add(query21);
  239. orQueryList2.add(query22);
  240. BasicDBObject orQuery2 = new BasicDBObject("$or", orQueryList2);
  241. List<BasicDBObject> orQueryCombinationList = new ArrayList<BasicDBObject>();
  242. orQueryCombinationList.add(orQuery1);
  243. orQueryCombinationList.add(orQuery2);
  244. BasicDBObject finalQuery = new BasicDBObject("$and",
  245. orQueryCombinationList);
  246. DBCursor cursor = MongoUtil.getColl("wujintao").find(finalQuery);
  247. }
  248. @Test
  249. /**
  250. * IN查询
  251. * if i need to query name in (a,b); just use { name : { $in : ['a', 'b'] } }
  252. * select * from things where name='a' or name='b'
  253. * @param coll
  254. */
  255. public void queryIn() {
  256. BasicDBList values = new BasicDBList();
  257. values.add("a");
  258. values.add("b");
  259. BasicDBObject in = new BasicDBObject("$in", values);
  260. DBCursor cursor = MongoUtil.getColl("wujintao").find(
  261. new BasicDBObject("name", in));
  262. try {
  263. while (cursor.hasNext()) {
  264. System.out.println(cursor.next());
  265. }
  266. } finally {
  267. cursor.close();
  268. }
  269. }
  270. @Test
  271. /**
  272. * 或查询
  273. * select * from table where name  = '12' or title = 'p'
  274. * @param coll
  275. */
  276. public void queryOr() {
  277. QueryBuilder query = new QueryBuilder();
  278. query.or(new BasicDBObject("name", 12), new BasicDBObject("title", "p"));
  279. DBCursor cursor = MongoUtil.getColl("wujintao").find(query.get()).addSpecial("$returnKey", "");
  280. try {
  281. while (cursor.hasNext()) {
  282. System.out.println(cursor.next());
  283. }
  284. } finally {
  285. cursor.close();
  286. }
  287. }
  288. @Test
  289. public void customQueryField() throws UnknownHostException{
  290. Mongo mongo = new Mongo("localhost", 27017);
  291. DB db = mongo.getDB("zhongsou_ad");
  292. BasicDBObjectBuilder bulder = new BasicDBObjectBuilder();
  293. bulder.add("times",1);
  294. bulder.add("aid",1);
  295. DBCursor cusor =  db.getCollection("ad_union_ad_c_1").find(new BasicDBObject(),bulder.get());
  296. for (DBObject dbObject : cusor) {
  297. System.out.println(dbObject);
  298. }
  299. }
  300. @Test
  301. public void mapReduce() throws UnknownHostException{
  302. Mongo mongo = new Mongo("localhost", 27017);
  303. DB db = mongo.getDB("zhongsou_ad");
  304. /***
  305. *  book1 = {name : "Understanding JAVA", pages : 100}
  306. *  book2 = {name : "Understanding JSON", pages : 200}
  307. *  db.books.save(book1)
  308. *  db.books.save(book2)
  309. *  book = {name : "Understanding XML", pages : 300}
  310. *  db.books.save(book)
  311. *  book = {name : "Understanding Web Services", pages : 400}
  312. *  db.books.save(book)
  313. *  book = {name : "Understanding Axis2", pages : 150}
  314. *  db.books.save(book)
  315. *
  316. var map = function() {
  317. var category;
  318. if ( this.pages >= 250 )
  319. category = 'Big Books';
  320. else
  321. category = "Small Books";
  322. emit(category, {name: this.name});
  323. };
  324. var reduce = function(key, values) {
  325. var sum = 0;
  326. values.forEach(function(doc) {
  327. sum += 1;
  328. });
  329. return {books: sum};
  330. };
  331. var count  = db.books.mapReduce(map, reduce, {out: "book_results"});
  332. */
  333. try {
  334. DBCollection books = db.getCollection("books");
  335. BasicDBObject book = new BasicDBObject();
  336. book.put("name", "Understanding JAVA");
  337. book.put("pages", 100);
  338. books.insert(book);
  339. book = new BasicDBObject();
  340. book.put("name", "Understanding JSON");
  341. book.put("pages", 200);
  342. books.insert(book);
  343. book = new BasicDBObject();
  344. book.put("name", "Understanding XML");
  345. book.put("pages", 300);
  346. books.insert(book);
  347. book = new BasicDBObject();
  348. book.put("name", "Understanding Web Services");
  349. book.put("pages", 400);
  350. books.insert(book);
  351. book = new BasicDBObject();
  352. book.put("name", "Understanding Axis2");
  353. book.put("pages", 150);
  354. books.insert(book);
  355. String map = "function() { "+
  356. "var category; " +
  357. "if ( this.pages >= 250 ) "+
  358. "category = 'Big Books'; " +
  359. "else " +
  360. "category = 'Small Books'; "+
  361. "emit(category, {name: this.name});}";
  362. String reduce = "function(key, values) { " +
  363. "var sum = 0; " +
  364. "values.forEach(function(doc) { " +
  365. "sum += 1; "+
  366. "}); " +
  367. "return {books: sum};} ";
  368. MapReduceCommand cmd = new MapReduceCommand(books, map, reduce,
  369. null, MapReduceCommand.OutputType.INLINE, null);
  370. MapReduceOutput out = books.mapReduce(cmd);
  371. for (DBObject o : out.results()) {
  372. System.out.println(o.toString());
  373. }
  374. } catch (Exception e) {
  375. e.printStackTrace();
  376. }
  377. }
  378. @Test
  379. public void GroupByManyField() throws UnknownHostException{
  380. //此方法没有运行成功
  381. Mongo mongo = new Mongo("localhost", 27017);
  382. DB db = mongo.getDB("libary");
  383. DBCollection books = db.getCollection("books");
  384. BasicDBObject groupKeys = new BasicDBObject();
  385. groupKeys.put("total", new BasicDBObject("$sum","pages"));
  386. BasicDBObject condition = new BasicDBObject();
  387. condition.append("pages", new BasicDBObject().put("$gt", 0));
  388. String reduce = "function(key, values) { " +
  389. "var sum = 0; " +
  390. "values.forEach(function(doc) { " +
  391. "sum += 1; "+
  392. "}); " +
  393. "return {books: sum};} ";
  394. /**
  395. BasicDBList basicDBList = (BasicDBList)db.getCollection("mongodb中集合编码或者编码")
  396. .group(DBObject key,   --分组字段,即group by的字段
  397. DBObject cond,        --查询中where条件
  398. DBObject initial,     --初始化各字段的值
  399. String reduce,        --每个分组都需要执行的Function
  400. String finial         --终结Funciton对结果进行最终的处理
  401. */
  402. DBObject obj = books.group(groupKeys, condition,  new BasicDBObject(), reduce);
  403. System.out.println(obj);
  404. AggregationOutput ouput = books.aggregate(new BasicDBObject("$group",groupKeys));
  405. System.out.println(ouput.getCommandResult());
  406. System.out.println(books.find(new BasicDBObject("$group",groupKeys)));
  407. }
  408. @Test
  409. /**
  410. * 分页查询
  411. */
  412. public void pageQuery() {
  413. DBCursor cursor = MongoUtil.getColl("wujintao").find().skip(0)
  414. .limit(10);
  415. while (cursor.hasNext()) {
  416. System.out.println(cursor.next());
  417. }
  418. }
  419. /**
  420. * 模糊查询
  421. */
  422. public void likeQuery() {
  423. Pattern john = Pattern.compile("joh?n");
  424. BasicDBObject query = new BasicDBObject("name", john);
  425. // finds all people with "name" matching /joh?n/i
  426. DBCursor cursor = MongoUtil.getColl("wujintao").find(query);
  427. }
  428. @Test
  429. /**
  430. * 条件删除
  431. */
  432. public void delete() {
  433. BasicDBObject query = new BasicDBObject();
  434. query.put("name", "xxx");
  435. // 找到并且删除,并返回删除的对象
  436. DBObject removeObj = MongoUtil.getColl("wujintao").findAndRemove(query);
  437. System.out.println(removeObj);
  438. }
  439. @Test
  440. /**
  441. * 更新
  442. */
  443. public void update() {
  444. BasicDBObject query = new BasicDBObject();
  445. query.put("name", "liu");
  446. DBObject stuFound = MongoUtil.getColl("wujintao").findOne(query);
  447. stuFound.put("name", stuFound.get("name") + "update_1");
  448. MongoUtil.getColl("wujintao").update(query, stuFound);
  449. }
  450. }

这里面涉及到的MongoUtil.java如下:

  1. package com.wujintao.mongo;
  2. import java.net.UnknownHostException;
  3. import org.apache.commons.logging.Log;
  4. import org.apache.commons.logging.LogFactory;
  5. import com.mongodb.DB;
  6. import com.mongodb.DBCollection;
  7. import com.mongodb.Mongo;
  8. /**
  9. * to see:http://www.mongodb.org/display/DOCS/Java+Driver+Concurrency
  10. * Mongo工具类:设计为单例模式,每当月份发生变化,数据库连接名称就会发生变化,这是业务规则
  11. * 因 MongoDB的Java驱动是线程安全的,对于一般的应用,只要一个Mongo实例即可,Mongo有个内置的连接池(池大小默认为10个)。
  12. * 对于有大量写和读的环境中,为了确保在一个Session中使用同一个DB时,我们可以用以下方式保证一致性:
  13. *   DB mdb = mongo.getDB('dbname');
  14. *   mdb.requestStart();
  15. *   // 业务代码
  16. *   mdb.requestDone();
  17. * DB和DBCollection是绝对线程安全的
  18. * @author wujintao
  19. */
  20. public class MongoUtil{
  21. private static Mongo mongo;
  22. private static DBCollection coll;
  23. private static Log log = LogFactory.getLog(MongoUtil.class);
  24. private static DB db;
  25. static{
  26. try {
  27. MongoOptions options = new MongoOptions();
  28. options.autoConnectRetry = true;
  29. options.connectionsPerHost = 1000;
  30. options.maxWaitTime = 5000;
  31. options.socketTimeout = 0;
  32. options.connectTimeout = 15000;
  33. options.threadsAllowedToBlockForConnectionMultiplier = 5000;
  34. //事实上,Mongo实例代表了一个数据库连接池,即使在多线程的环境中,一个Mongo实例对我们来说已经足够了
  35. mongo = new Mongo(new ServerAddress(DBMongoConfig.getHost(),DBMongoConfig.getPort()),options);
  36. //mongo = new Mongo(DBMongoConfig.getHost(),DBMongoConfig.getPort());
  37. // or, to connect to a replica set, supply a seed list of members
  38. // Mongo m = new Mongo(Arrays.asList(new ServerAddress("localhost",
  39. // 27017),
  40. // new ServerAddress("localhost", 27018),
  41. // new ServerAddress("localhost", 27019)));
  42. // 注意Mongo已经实现了连接池,并且是线程安全的。
  43. // 大部分用户使用mongodb都在安全内网下,但如果将mongodb设为安全验证模式,就需要在客户端提供用户名和密码:
  44. // boolean auth = db.authenticate(myUserName, myPassword);
  45. } catch (UnknownHostException e) {
  46. log.info("get mongo instance failed");
  47. }
  48. }
  49. public static DB getDB(){
  50. if(db==null){
  51. db = mongo.getDB(DBMongoConfig.getDbname());
  52. }
  53. return db;
  54. }
  55. public static Mongo getMong(){
  56. return mongo;
  57. }
  58. public static DBCollection getColl(String collname){
  59. return getDB().getCollection(collname);
  60. }
  61. }

MongoDB基本用法的更多相关文章

  1. Mongodb基础用法及查询操作[转载]

    插入多条测试数据> for(i=1;i<=1000;i++){... db.blog.insert({"title":i,"content":&qu ...

  2. mongodb的用法

    关于新版(2.***)的c#用法,网上基本没有.昨天折腾半天,去构造server,发现现在新版本不需要了,文档是这样的,大概意思,无需像原来那样获取server,直接从client获取db就行了. h ...

  3. Mongodb基础用法及查询操作

    插入多条测试数据> for(i=1;i<=1000;i++){... db.blog.insert({"title":i,"content":&qu ...

  4. MongoDB查询用法大全

    转载 http://blog.163.com/lgh_2002/blog/static/440175262012052116455/ 详见官方的手册: http://www.mongodb.org/d ...

  5. 爬虫入门【8】Python连接MongoDB的用法简介

    MongoDB的连接和数据存取 MongoDB是一种跨平台,面向文档的NoSQL数据库,提供高性能,高可用性并且易于扩展. 包含数据库,集合,文档等几个重要概念. 我们在这里不介绍MongoDB的特点 ...

  6. mongodb简单用法

    修改器: $inc: 增加已有的键值,如果键值不存在就创建一个 数据库中存在这样的数据:{ , "url": "www.example.com", }db.fz ...

  7. MongoDB高级用法

    MongoDB高级查询用法大全 转载 http://blog.163.com/lgh_2002/blog/static/440175262012052116455/ 详见官方的手册:http://ww ...

  8. mongodb(基础用法)

    驱动和客户端库 https://mongodb-documentation.readthedocs.org/en/latest/ecosystem/drivers.html#id2 https://m ...

  9. mongodb基础用法

    安装部分 mongodb配置方法 mongodb的安装目录 C:\MongoDB\Server\3.2\bin 创建以下目录 c:\mongo\log c:\mongo\db 创建mongodb的配置 ...

随机推荐

  1. 【Espruino】NO.17 使用平板电脑调试Espruino(OTG方式)

    http://blog.csdn.net/qwert1213131/article/details/38068379 本文属于个人理解,能力有限,纰漏在所难免,还望指正! [小鱼有点电] [Espru ...

  2. 【Redis】redis+php处理高并发,很好的教程||附上 php的文件锁

    链接至:http://blog.csdn.net/nuli888/article/details/51865401 很好的教程,其中redis+php有点小问题. 附上php文件锁: $fp = fo ...

  3. [译]聊聊C#中的泛型的使用(新手勿入) Seaching TreeVIew WPF 可编辑树Ztree的使用(包括对后台数据库的增删改查) 字段和属性的区别 C# 遍历Dictionary并修改其中的Value 学习笔记——异步 程序员常说的「哈希表」是个什么鬼?

    [译]聊聊C#中的泛型的使用(新手勿入)   写在前面 今天忙里偷闲在浏览外文的时候看到一篇讲C#中泛型的使用的文章,因此加上本人的理解以及四级没过的英语水平斗胆给大伙进行了翻译,当然在翻译的过程中发 ...

  4. C# BeginInvoke和EndInvoke方法

    转载自:BeginInvoke和EndInvoke方法 IDE:Visual Studio 2008 本系列教程主要包括如下内容:1. BeginInvoke和EndInvoke方法 2. Threa ...

  5. C#实现DevExpress本地化实例详解

    using System; using System.Collections.Generic; using System.Text; using DevExpress.XtraGrid.Localiz ...

  6. vue 和ng的区别

    vue:    读音:    v-u-e    view vue到底是什么?        一个mvvm框架(库).和angular类似        比较容易上手.小巧    mvc:       ...

  7. 深入剖析 linux GCC 4.4 的 STL string

    转自: 深入剖析 linux GCC 4.4 的 STL string 本文通过研究STL源码来剖析C++中标准模板块库std::string运行机理,重点研究了其中的引用计数和Copy-On-Wri ...

  8. 一款基于jQuery的带Tooltip表单验证的注册表单

    今天给大家分享一款基于jQuery的注册表单,这款注册表单的特点是确认提交注册信息时,表单会自动验证所填写的信息,如果信息填写有误,即会在相应的字段内以Tooltip提示框的形式显示错误信息.这款jQ ...

  9. 获取页面的checkbox,并给参数赋值

    需求: 需要发送的请求:

  10. PHP——小尾巴之流程处理

    说明:首先新建一个流程,把处理流程的节点人员添加进去,最后点确定提交至数据库 处理流程:不同用户登录进去处理自己的节点部分对其审核通过 新建两个流程: 第一个为借款流程:处理顺序为:李四发起=> ...