如何在MongoDB中使用driver?針對(duì)這個(gè)問題,這篇文章詳細(xì)介紹了相對(duì)應(yīng)的分析和解答,希望可以幫助更多想解決這個(gè)問題的小伙伴找到更簡(jiǎn)單易行的方法。
創(chuàng)新互聯(lián)公司成立以來不斷整合自身及行業(yè)資源、不斷突破觀念以使企業(yè)策略得到完善和成熟,建立了一套“以技術(shù)為基點(diǎn),以客戶需求中心、市場(chǎng)為導(dǎo)向”的快速反應(yīng)體系。對(duì)公司的主營(yíng)項(xiàng)目,如中高端企業(yè)網(wǎng)站企劃 / 設(shè)計(jì)、行業(yè) / 企業(yè)門戶設(shè)計(jì)推廣、行業(yè)門戶平臺(tái)運(yùn)營(yíng)、重慶APP軟件開發(fā)、成都做手機(jī)網(wǎng)站、微信網(wǎng)站制作、軟件開發(fā)、西部信息服務(wù)器租用等實(shí)行標(biāo)準(zhǔn)化操作,讓客戶可以直觀的預(yù)知到從創(chuàng)新互聯(lián)公司可以獲得的服務(wù)效果。
MongoDB 是一個(gè)基于分布式文件存儲(chǔ)的數(shù)據(jù)庫。由 C++ 語言編寫。旨在為 WEB 應(yīng)用提供可擴(kuò)展的高性能數(shù)據(jù)存儲(chǔ)解決方案。
MongoDB 是一個(gè)介于關(guān)系數(shù)據(jù)庫和非關(guān)系數(shù)據(jù)庫之間的產(chǎn)品,是非關(guān)系數(shù)據(jù)庫當(dāng)中功能最豐富,最像關(guān)系數(shù)據(jù)庫的。
1 環(huán)境準(zhǔn)備
創(chuàng)建工程,并添加以下依賴:
org.mongodb mongodb-driver 3.10.1
2 使用mongodb-driver
2.1 查詢所有
@Test public void test1() { //創(chuàng)建連接 MongoClient client = new MongoClient("192.168.200.128"); //打開數(shù)據(jù)庫 MongoDatabase commentdb = client.getDatabase("commentdb"); //獲取集合 MongoCollectioncomment = commentdb.getCollection("comment"); //查詢 FindIterable documents = comment.find(); //查詢記錄獲取文檔集合 for (Document document : documents) { System.out.println("_id:" + document.get("_id")); System.out.println("內(nèi)容:" + document.get("content")); System.out.println("用戶ID:" + document.get("userid")); System.out.println("點(diǎn)贊數(shù):" + document.get("thumbup")); } //關(guān)閉連接 client.close(); } }
2.2 根據(jù)_id查詢
每次使用都要用到MongoCollection
,進(jìn)行抽取:
private MongoClient client; private MongoCollectioncomment; @Before public void init() { //創(chuàng)建連接 client = new MongoClient("192.168.200.128"); //打開數(shù)據(jù)庫 MongoDatabase commentdb = client.getDatabase("commentdb"); //獲取集合 comment = commentdb.getCollection("comment"); } @After public void after() { client.close(); } @Test public void test2() { //查詢 FindIterable documents = comment.find(new BasicDBObject("_id", "1")); //查詢記錄獲取文檔集合 for (Document document : documents) { System.out.println("_id:" + document.get("_id")); System.out.println("內(nèi)容:" + document.get("content")); System.out.println("用戶ID:" + document.get("userid")); System.out.println("點(diǎn)贊數(shù):" + document.get("thumbup")); } }
2.3 新增
@Test public void test3() { Mapmap = new HashMap(); map.put("_id", "6"); map.put("content", "很棒!"); map.put("userid", "9999"); map.put("thumbup", 123); Document document = new Document(map); comment.insertOne(document); }
2.4 修改
@Test public void test4() { //修改的條件 Bson filter = new BasicDBObject("_id", "6"); //修改的數(shù)據(jù) Bson update = new BasicDBObject("$set", new Document("userid", "8888")); comment.updateOne(filter, update); }
2.5 刪除
@Test public void test5() { //刪除的條件 Bson filter = new BasicDBObject("_id", "6"); comment.deleteOne(filter); }
MongoDB優(yōu)勢(shì)與劣勢(shì)
優(yōu)勢(shì):
1、在適量級(jí)的內(nèi)存的MongoDB的性能是非常迅速的,它將熱數(shù)據(jù)存儲(chǔ)在物理內(nèi)存中,使得熱數(shù)據(jù)的讀寫變得十分快。
2、MongoDB的高可用和集群架構(gòu)擁有十分高的擴(kuò)展性。
3、在副本集中,當(dāng)主庫遇到問題,無法繼續(xù)提供服務(wù)的時(shí)候,副本集將選舉一個(gè)新的主庫繼續(xù)提供服務(wù)。
4、MongoDB的Bson和JSon格式的數(shù)據(jù)十分適合文檔格式的存儲(chǔ)與查詢。
劣勢(shì):
1、 不支持事務(wù)操作。MongoDB本身沒有自帶事務(wù)機(jī)制,若需要在MongoDB中實(shí)現(xiàn)事務(wù)機(jī)制,需通過一個(gè)額外的表,從邏輯上自行實(shí)現(xiàn)事務(wù)。
2、 應(yīng)用經(jīng)驗(yàn)少,由于NOSQL興起時(shí)間短,應(yīng)用經(jīng)驗(yàn)相比關(guān)系型數(shù)據(jù)庫較少。
3、MongoDB占用空間過大。
關(guān)于如何在mongodb中使用driver問題的解答就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道了解更多相關(guān)知識(shí)。