MongoDB 常用API接口在Java下的应用

MongoDB作为一个介入关系型与非关系性这间的NoSQL数据库,其操作与SQL的单表的操作基本类似,相对传递数据库,MongoDB没有表的概念,引入集合的概念,以及于对数化的格式化无要求。由于MongoDB处理效率极高,且连接极快,所以对MongoDB的连接均采用的短连接

1、MongoDB 初始化,获取集合
    public static DBCollection getDBCollection(Mongo mongo, String dbName, String collectionName) {
        if (mongo == null) {
            mongo = new Mongo(MongoDBUtil.IP, MongoDBUtil.PORT);
        }

        DB db = mongo.getDB(dbName);
        DBCollection dbCollection = db.getCollection(collectionName);

        return dbCollection;
    }

    注意以上是在不需要认证的情况下获取,修改集合,如果需要认证,请参考以下方法:
Java授权调用如下:
MongoClient client = null;
try {
        MongoCredential credential = MongoCredential.createCredential("username" , "dbname", "pwd");
        ServerAddress addr = new ServerAddress("ip", port);
        client = new MongoClient(addr, Arrays.asList(credential));
        DB db = client.getDB(MongoDBCfg.DB_SP2P); 

        DBCollection dbCollection = db.getCollection(collectionName);

        return dbCollection;            
} catch (Exception e) {

} finally {
        if (client != null) {
            client.close();
        }
}   

2、MongoDB插入, 如下将一个列表插入Collection

try {
            /*获取集合*/
            mongo = new Mongo(MongoDBUtil.IP, MongoDBUtil.PORT);
            DB db = mongo.getDB(MongoDBUtil.BID_DBNAME);
            DBCollection dbCollection = db.getCollection(MongoDBUtil.BID_COLLECTION_NAME);

            for (int i = 0; i < bids.size(); i++) {
                DBObject dbObject = this.convVFrontAllBidsToDBObject(bids.get(i));
                if (dbObject == null) {
                    continue;
                }

                dbCollection.insert(dbObject);
            }

        } catch (Exception e) {
            error.code = ErrorInfoDefine.ERROR_CODE_EXCEPTION;
            error.msg = e.toString();        

            LogUtil.logException("saveInvestBidListToMongoDB", e, "严重错误.");
        } finally {
            MongoDBUtil.freeMongo(mongo);
        }

3、MongoDB 更新

try {
            /*获取集合*/
            mongo = new Mongo(MongoDBUtil.IP, MongoDBUtil.PORT);
            DB db = mongo.getDB(MongoDBUtil.BID_DBNAME);
            DBCollection dbCollection = db.getCollection(MongoDBUtil.BID_COLLECTION_NAME);
            DBObject dbObject = new BasicDBObject();
            dbObject.put("has_invested_amount", amount);
            dbObject.put("loan_schedule", schedule);

            DBObject dbQuery = new BasicDBObject();
            dbQuery.put("_id", bid);

            dbCollection.update(dbQuery, new BasicDBObject("$set", dbObject));

        } catch (Exception e) {
            error.code = ErrorInfoDefine.ERROR_CODE_EXCEPTION;
            error.msg = e.toString();        

            LogUtil.logException("updateinvestBid", e, "严重错误.");
        } finally {
            MongoDBUtil.freeMongo(mongo);
        }  

注意:dbCollection.update(dbQuery, new BasicDBObject(“$set”, dbObject)); 一定要这样写,否则后果自负

4、MongoDB查询

try {
            /*获取集合*/
            mongo = new Mongo(MongoDBUtil.IP, MongoDBUtil.PORT);
            DB db = mongo.getDB(MongoDBUtil.BID_DBNAME);
            DBCollection dbCollection = db.getCollection(MongoDBUtil.BID_COLLECTION_NAME);

            //排序,与DAO保持一致 , 默认为0
            //0 order by loan_schedule asc, is_hot desc, time desc ,
            //1 order by period_unit asc, period desc, is_hot desc, time desc ,
            //2 order by loan_schedule asc, is_hot desc, time desc                             
            DBObject orderBy = new BasicDBObject();
            if (order == 1) {
                orderBy.put("period_unit", MongoDBUtil.ASC);    
                orderBy.put("period", MongoDBUtil.DESC);
                orderBy.put("is_hot", MongoDBUtil.DESC);
                orderBy.put("time", MongoDBUtil.DESC);
            } else if (order == 2) {
                orderBy.put("loan_schedule", MongoDBUtil.ASC);    
                orderBy.put("is_hot", MongoDBUtil.DESC);
                orderBy.put("time", MongoDBUtil.DESC);
            } else {
                orderBy.put("loan_schedule", MongoDBUtil.ASC);    
                orderBy.put("is_hot", MongoDBUtil.DESC);
                orderBy.put("time", MongoDBUtil.DESC);
            }

            int skip = (currPage - 1) * pageSize;
            DBCursor dbCursor = dbCollection.find().sort(orderBy).skip(skip).limit(pageSize);

            List<DBObject> list = dbCursor.toArray();
            List<v_front_all_bids> bidList = new ArrayList<v_front_all_bids>();
            for (int i = 0; i < list.size(); i++) {
                bidList.add(this.convDBObjectToVFrontAllBids(list.get(i)));
            }

            return bidList;            
        } catch (Exception e) {

        } finally {
            MongoDBUtil.freeMongo(mongo);
        }

5、删除,待续

驱动包下载地址:
https://oss.sonatype.org/content/repositories/releases/org/mongodb/mongo-java-driver/

在下载的时候需要注意下插的java驱动包是mongo-java-driver而不是mongodb-java-driver

最近重构并优化了一套后端服务的代码: 1. 设计并开发高效的C++对象池算法,时间复杂度为 O(1) 在整个重构框架中,对象池是负责管理内存的底层基本模块 2. 利用命令模式的思想开发 Redis 子模块 抽象出方便高效的接口提供给上层程序员使用 3. 利用组合模式和装饰模式的思想开发 MongoDB 数据库查询条件装饰器 将查询条件和数据库 MongodbModule 数据模型进行解耦合 4. 抽象出一套 MongoDB Module 结果集接口 通过模板和特化技术实现 string/int 等不同索引类型的结果集 5. 开发 AbstractMongodbModule 类处理通用的 MongoDB 数据库表数据操作 数据库中不同的表都有自己的 AbstractMongodbModule 子类对应 6. 用 Perl 开发自动代码生成器,上层程序员对照数据库表结构写 .tmpl 配置文件, 自动生成该数据库表的 MongodbModule 子类,减轻程序员新增表时的工作量 7. 结合 Redis 模块和 MongoDB 模块,开发 HierarchicalModule 分层数据模型 构造一个 Redis 缓存层 + MongoDB 持久层的后台 Server 架构 并通过简单方便的接口供上层程序员使用,具体的数据分层处理对上层程序员是黑盒的 8. 设计并开发整套缓存层使用的 KEY 规则,方便缓存更新 结合公司的数据订阅系统进行 Redis缓存层 + MongoDB 持久层数据更新功能 9. 重构后的分层数据架构比原有接口效率提高 5 - 400 倍(返回数据记录条数从 150 - 5 条) 绝大部分时间后端接口需要获取记录个数在 50 以内,所以效率提升在 100 倍左右
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值