mongodb是一個文檔型的NOSQL資料庫,官網下載地址https://www.mongodb.com/download
linux版本的要64位的我的虛擬機器是32位的,我下的是Windows版本,不過操作都差不多。
下載好了接下來就安裝。
安裝後建立一個資料庫路徑
cmd運行mongodb服務端
D:\software\mongodbServer\bin/mongod.exe --dbpath D:\software/mongodbData #服務端
再啟動一個cmd視窗運行用戶端
D:\software\mongodbServer\bin/mongo #用戶端
建立dbuse dbxx
查詢全部dbshow dbs
刪除dbuse runoobdb.dropDatabase()
插入文檔db.col.insert({title: 'test', description: 'MongoDB 是一個 Nosql 資料庫', by: 'test', url: 'http://www.test.com', tags: ['mongodb', 'database', 'NoSQL'], likes: 200})
查看文檔db.col.find();
java api 操作 mongodb資料庫
需要一個mongo-java-driver的jar 如果你是maven進入這個地址http://mongodb.github.io/mongo-java-driver/
package com.zit.test;import java.util.ArrayList;import java.util.List;import org.bson.Document;import com.mongodb.MongoClient;import com.mongodb.client.FindIterable;import com.mongodb.client.MongoCollection;import com.mongodb.client.MongoCursor;import com.mongodb.client.MongoDatabase;import com.mongodb.client.model.Filters;public class MongoDBUtils {/***<p>方法描述:建立串連 </p>*/public static MongoDatabase getMongodbConnection() {try{ // 串連到 mongodb 服務 MongoClient mongoClient = new MongoClient( "127.0.0.1" , 27017 ); // 串連到資料庫 MongoDatabase mongoDatabase = mongoClient.getDatabase("zzqtest"); System.out.println("Connect to database successfully"); return mongoDatabase; }catch(Exception e){ System.err.println( e.getClass().getName() + ": " + e.getMessage() ); return null; } }/***<p>方法描述: 建立集合</p> */private static void createCollection (String collectionName) {getMongodbConnection().createCollection(collectionName);System.out.println("集合建立成功");}/***<p>方法描述: 選擇集合</p>*/private static MongoCollection selectCollection (String collectionName) {MongoCollection<Document> collection = getMongodbConnection().getCollection(collectionName);System.out.println("集合選擇"+collectionName +"成功");return collection;}/***<p>方法描述: 插入文檔</p>*/private static void insertDocument (MongoCollection<Document> collection) { Document document2 = new Document("title", "MongoDB"); Document document = new Document("title", "MongoDB"). append("description", document2). append("likes", 100). append("by", "Fly"); List<Document> documents = new ArrayList<Document>(); documents.add(document); collection.insertMany(documents); System.out.println("文檔插入成功");}/***<p>方法描述:文檔更新 </p>*/private static void updateDocument (MongoCollection<Document> collection) {collection.updateMany(Filters.eq("likes", 100), new Document("$set",new Document("likes",200))); System.out.println("文檔更新成功");}/***<p>方法描述:查詢文檔 </p>*/private static void selectDocument (MongoCollection<Document> collection) { //檢索查看結果 FindIterable<Document> findIterable = collection.find(); MongoCursor<Document> mongoCursor = findIterable.iterator(); while(mongoCursor.hasNext()){ System.out.println(mongoCursor.next()); } }/***<p>方法描述:刪除文檔 </p>*/private static void deleteDocument (MongoCollection<Document> collection) { //刪除合格第一個文檔 collection.deleteOne(Filters.eq("likes", 100)); //刪除所有合格文檔 collection.deleteMany (Filters.eq("likes", 100)); }public static void main(String[] args) {//createCollection("test");MongoCollection<Document> collection = selectCollection("test");/*insertDocument(collection);*/updateDocument(collection);//deleteDocument(collection);selectDocument(collection);}}