Java和MongoDB之Hello World

标签: java mongodb hello | 发表时间:2013-03-19 22:17 | 作者:qiyadeng
出处:http://www.blogjava.net/

1.新建Project

新建Java Project,并把mongo-java-driver驱动加入到项目bulid path中,如果你使用的是maven增加依赖。


      <dependency>
          <groupId>org.mongodb</groupId>
          <artifactId>mongo-java-driver</artifactId>
          <version>2.10.1</version>
      </dependency>

2.连接上MongoDB

//>2.10版本
MongoClient mongo = new MongoClient( "localhost" , 27017 );

//老版本  
Mongo mongo = new Mongo("localhost", 27017);

如果需要验证,需要输入用户名和密码


    MongoClient mongoClient = new MongoClient();
    DB db = mongoClient.getDB("database name");
    boolean auth = db.authenticate("username", "password".toCharArray());
3.MongoDB数据库

得到MongoDB中的数据库,如果数据库名不存在,MongoDB会自动创建


DB db = mongo.getDB("database name");
显示所有的数据库
    List<String> dbs = mongo.getDatabaseNames();
    for(String db : dbs){
        System.out.println(db);
    }
4.MongoDB Collection(MongoDB表)

得到数据库中的表

    DB db = mongo.getDB("testdb");
    DBCollection table = db.getCollection("user");
显示数据库中的所有表
    DB db = mongo.getDB("testdb");
    Set<String> tables = db.getCollectionNames();
 
    for(String coll : tables){
        System.out.println(coll);
    }
5.插入、查找、更新、删除操作

插入数据,向Collection(表)中插入一个Document

    DBCollection table = db.getCollection("user");
    BasicDBObject document = new BasicDBObject();
    document.put("name", "qiyadeng");
    document.put("age", 30);
    document.put("createdDate", new Date());
    table.insert(document);
更新Document中的name="qiyadeng.com"
	
    DBCollection table = db.getCollection("user");

     BasicDBObject query = new BasicDBObject();
    query.put("name", "qiyadeng");

    BasicDBObject newDocument = new BasicDBObject();
    newDocument.put("name", "qiyadeng.com");

    BasicDBObject updateObj = new BasicDBObject();
    updateObj.put("$set", newDocument);
 
    table.update(query, updateObj);
从Collection中查找name="qiyadeng.com"的Document
    DBCollection table = db.getCollection("user");
 
    BasicDBObject searchQuery = new BasicDBObject();
    searchQuery.put("name", "qiyadeng.com");
 
    DBCursor cursor = table.find(searchQuery);
 
    while (cursor.hasNext()) {
        System.out.println(cursor.next());
    }
删除name="qiyadeng"的Document
    DBCollection table = db.getCollection("user");
 
    BasicDBObject searchQuery = new BasicDBObject();
    searchQuery.put("name", "qiyadeng.com");
 
    table.remove(searchQuery);
   
6.完整的例子
package com.qiyadeng.mongodb;


import java.util.Date;

import com.mongodb.BasicDBObject;
import com.mongodb.DB;
import com.mongodb.DBCollection;
import com.mongodb.DBCursor;
import com.mongodb.MongoClient;

public class MongoDBSample {

    public static void main(String[] args) throws Exception{
             
            /**** Connect to MongoDB ****/
            //2.10.0后,使用MongoClient
            MongoClient mongo = new MongoClient("localhost", 27017);
         
            /**** Get database ****/
            // if database doesn't exists, MongoDB will create it for you
            DB db = mongo.getDB("testdb");
         
            /**** Get collection / table from 'testdb' ****/
            // if collection doesn't exists, MongoDB will create it for you
            DBCollection table = db.getCollection("user");
         
            /**** Insert ****/
            // create a document to store key and value
            BasicDBObject document = new BasicDBObject();
            document.put("name", "qiyadeng");
            document.put("age", 30);
            document.put("createdDate", new Date());
            table.insert(document);
         
            /**** Find and display ****/
            BasicDBObject searchQuery = new BasicDBObject();
            searchQuery.put("name", "qiyadeng");
         
            DBCursor cursor = table.find(searchQuery);
         
            while (cursor.hasNext()) {
                System.out.println(cursor.next());
            }
         
            /**** Update ****/
            // search document where name="qiyadeng" and update it with new values
            BasicDBObject query = new BasicDBObject();
            query.put("name", "qiyadeng");
         
            BasicDBObject newDocument = new BasicDBObject();
            newDocument.put("name", "qiyadeng.com");
         
            BasicDBObject updateObj = new BasicDBObject();
            updateObj.put("$set", newDocument);
         
            table.update(query, updateObj);
         
            /**** Find and display ****/
            BasicDBObject searchQuery2 
                = new BasicDBObject().append("name", "qiyadeng.com");
         
            DBCursor cursor2 = table.find(searchQuery2);
         
            while (cursor2.hasNext()) {
                System.out.println(cursor2.next());
            }
    }
}

   

输出

{ "_id" : { "$oid" : "51444c88874c79654063356b"} , "name" : "qiyadeng" , "age" : 30 , "createdDate" : { "$date" : "2013-03-16T10:42:16.555Z"}}
{ "_id" : { "$oid" : "51444c88874c79654063356b"} , "age" : 30 , "createdDate" : { "$date" : "2013-03-16T10:42:16.555Z"} , "name" : "qiyadeng.com"}
   
使用mongo验证创建的数据库testdb,collection user是否存在。






qiyadeng 2013-03-19 22:17 发表评论

相关 [java mongodb hello] 推荐:

Java和MongoDB之Hello World

- - BlogJava-首页技术区
新建Java Project,并把mongo-java-driver驱动加入到项目bulid path中,如果你使用的是maven增加依赖. 2.连接上MongoDB. //>2.10版本. 如果需要验证,需要输入用户名和密码. 3.MongoDB数据库 得到MongoDB中的数据库,如果数据库名不存在,MongoDB会自动创建.

[mongodb] java操作mongodb

- - 数据库 - ITeye博客
           //实例化Mongo对象,连接27017端口.                               //连接名为yourdb的数据库,假如数据库不存在的话,mongodb会自动建立. //从Mongodb中获得名为yourColleection的数据集合,如果该数据集合不存在,Mongodb会为其新建立.

文章: MongoDB、Java及ORM

- - InfoQ cn
目前有很多互相竞争的NoSQL产品,它们使用的方式不尽相同,但都能很好地解决大数据问题. MongoDB就是其中一款非常不错的产品. MongoDB是面向文档、无Schema的存储解决方案,它用JSON风格的文档展现、查询、修改数据. MongoDB有很丰富的文档,安装和设置都很简单,而且易于扩展.

Java MongoDB : Save image example(译)

- - 数据库 - ITeye博客
原文出自:http://www.mkyong.com/mongodb/java-mongodb-save-image-example/. 返回目录: http://ysj5125094.iteye.com/blog/2192754  . 译:在本教程中,我们将向你展示如何通过  GridFS API 保存一个图片到MongoDB.

MongoDB对图片进行CRUD操作——与JAVA结合

- - CSDN博客推荐文章
        上几篇博客简单对MongoDB进行了简单介绍和如何安装,以及在dos下是如何操作MongoDB和在安装MongoDB中,出现了什么错误,是如何解决的. 当然这些都还不够,我们还要用到实际当中去. 我用MyEclipse+JDK1.7做了一个简单的demo,来展示下MongoDB怎么运用到实际中去.

"Hello World!" 玩跨界

- cpy - 果壳网 guokr.com - 果壳网
DIYer:约瑟 制作时间:一星期 制作难度:★★★☆☆ GEEK指数:★★★☆☆. 我们家宝贝妮子大寿,自然我就要整一个独一无二滴东西,恩,于是我邪恶的计划诞生了~把废弃的赛扬CPU使用浓硝酸腐蚀法做成一个手机挂坠~. 初步打算是使用纸片画上自己喜欢的图像,然后剪裁后黏贴于CPU上,使用喷漆喷涂,然后解下纸片,生成一个镂空的地方.

hello,chrome,我是Firefox。。。

- - 前端观察
今天,Firefox发表了一段视频, 宣告Firefox和Chrome之间的视频通信成功~~. 在Chrome支持WebRTC之后,Firefox终于在Nightly版本中也开始原生支持了. 虽然现在只有PC支持,但是可以遇见不久之后,手机端也会开始支持了,而Firefox引入WebRTC,应该主要还是为了自己的Firefox OS.

Hello Naomi蛋糕设计

- Zoe - PADMAG视觉杂志
Hello Naomi是澳大利亚的一家糕点房及派对策划工作室,创始人之前是个机器人程序工程师,他们的蛋糕设计风格极简,色彩洁净淡雅,官方网站:http://www.hellonaomi.com.au/. 点击阅读全文可见他们的更多蛋糕设计.

IOS代码实现Hello World

- - CSDN博客推荐文章
前面写的IOS笔记一直都是用Xib文件实现的小Demo开发,但是问了好几个现在正从事IOS开发的朋友,在实际开发,并不是所有的项目都会用Xib来实现的,因为IOS以前的版本不能正常运行,因为还在学习阶段,也没有在真机上测试,所以没法验证. 但还是决定要用代码来实现Demo,也可以重新巩固一下先前学习的内容.

Chrome 28发布——hello Blink

- - 前端观察
Chrome 28发布了,好久没有关注版本号看到这个数字还是吓了一跳. 这个版本改动蛮大,我们一起来看看~~. Chrome 28正式将内核更换为Blink了,可以通过在地址栏输入chrome://version来查看. Blink暂时只是Webkit的一个分支吗. 这个很赞,比HTML5的Notification API要丰富很多.