MongoUtils工具类实现

时间:2022-08-26 10:56:23
【文件属性】:

文件名称:MongoUtils工具类实现

文件大小:3KB

文件格式:JAVA

更新时间:2022-08-26 10:56:23

mongodb MongoUtils 工具类

封装mong关联查询api接口,如addBatch()、delete()、exists()、lookUp()等接口 public void delete(Query query , Object obj , String collectionName){ mongoTemplate.remove(query, obj .getClass(), collectionName); } public boolean update(Query query , Update update , Object obj , String collectionName){ UpdateResult result = mongoTemplate.updateMulti(query, update, obj.getClass(), collectionName); return result.wasAcknowledged(); } public List getAllByCollectionName(


网友评论