亚洲精品久久久中文字幕-亚洲精品久久片久久-亚洲精品久久青草-亚洲精品久久婷婷爱久久婷婷-亚洲精品久久午夜香蕉

您的位置:首頁技術文章
文章詳情頁

JAVA代碼實現MongoDB動態條件之分頁查詢

瀏覽:4日期:2022-08-29 09:38:59

一、使用QueryByExampleExecutor

1. 繼承MongoRepository

public interface StudentRepository extends MongoRepository<Student, String> { }

2. 代碼實現

使用ExampleMatcher匹配器-----只支持字符串的模糊查詢,其他類型是完全匹配 Example封裝實體類和匹配器 使用QueryByExampleExecutor接口中的findAll方法

public Page<Student> getListWithExample(StudentReqVO studentReqVO) { Sort sort = Sort.by(Sort.Direction.DESC, 'createTime'); Pageable pageable = PageRequest.of(studentReqVO.getPageNum(), studentReqVO.getPageSize(), sort); Student student = new Student(); BeanUtils.copyProperties(studentReqVO, student); //創建匹配器,即如何使用查詢條件 ExampleMatcher matcher = ExampleMatcher.matching() //構建對象 .withStringMatcher(ExampleMatcher.StringMatcher.CONTAINING) //改變默認字符串匹配方式:模糊查詢 .withIgnoreCase(true) //改變默認大小寫忽略方式:忽略大小寫 .withMatcher('name', ExampleMatcher.GenericPropertyMatchers.contains()) //采用“包含匹配”的方式查詢 .withIgnorePaths('pageNum', 'pageSize'); //忽略屬性,不參與查詢 //創建實例 Example<Student> example = Example.of(student, matcher); Page<Student> students = studentRepository.findAll(example, pageable); return students;}

缺點:

不支持過濾條件分組。即不支持過濾條件用 or(或) 來連接,所有的過濾條件,都是簡單一層的用 and(并且) 連接 不支持兩個值的范圍查詢,如時間范圍的查詢

二、MongoTemplate結合Query

實現一:使用Criteria封裝查詢條件

public Page<Student> getListWithCriteria(StudentReqVO studentReqVO) { Sort sort = Sort.by(Sort.Direction.DESC, 'createTime'); Pageable pageable = PageRequest.of(studentReqVO.getPageNum(), studentReqVO.getPageSize(), sort); Query query = new Query(); //動態拼接查詢條件 if (!StringUtils.isEmpty(studentReqVO.getName())){ Pattern pattern = Pattern.compile('^.*' + studentReqVO.getName() + '.*$', Pattern.CASE_INSENSITIVE); query.addCriteria(Criteria.where('name').regex(pattern)); } if (studentReqVO.getSex() != null){ query.addCriteria(Criteria.where('sex').is(studentReqVO.getSex())); } if (studentReqVO.getCreateTime() != null){ query.addCriteria(Criteria.where('createTime').lte(studentReqVO.getCreateTime())); } //計算總數 long total = mongoTemplate.count(query, Student.class); //查詢結果集 List<Student> studentList = mongoTemplate.find(query.with(pageable), Student.class); Page<Student> studentPage = new PageImpl(studentList, pageable, total); return studentPage;}

實現二:使用Example和Criteria封裝查詢條件

public Page<Student> getListWithExampleAndCriteria(StudentReqVO studentReqVO) { Sort sort = Sort.by(Sort.Direction.DESC, 'createTime'); Pageable pageable = PageRequest.of(studentReqVO.getPageNum(), studentReqVO.getPageSize(), sort); Student student = new Student(); BeanUtils.copyProperties(studentReqVO, student); //創建匹配器,即如何使用查詢條件 ExampleMatcher matcher = ExampleMatcher.matching() //構建對象 .withStringMatcher(ExampleMatcher.StringMatcher.CONTAINING) //改變默認字符串匹配方式:模糊查詢 .withIgnoreCase(true) //改變默認大小寫忽略方式:忽略大小寫 .withMatcher('name', ExampleMatcher.GenericPropertyMatchers.contains()) //標題采用“包含匹配”的方式查詢 .withIgnorePaths('pageNum', 'pageSize'); //忽略屬性,不參與查詢 //創建實例 Example<Student> example = Example.of(student, matcher); Query query = new Query(Criteria.byExample(example)); if (studentReqVO.getCreateTime() != null){ query.addCriteria(Criteria.where('createTime').lte(studentReqVO.getCreateTime())); } //計算總數 long total = mongoTemplate.count(query, Student.class); //查詢結果集 List<Student> studentList = mongoTemplate.find(query.with(pageable), Student.class); Page<Student> studentPage = new PageImpl(studentList, pageable, total); return studentPage;}

缺點:

不支持返回固定字段

三、MongoTemplate結合BasicQuery

BasicQuery是Query的子類 支持返回固定字段

public Page<Student> getListWithBasicQuery(StudentReqVO studentReqVO) { Sort sort = Sort.by(Sort.Direction.DESC, 'createTime'); Pageable pageable = PageRequest.of(studentReqVO.getPageNum(), studentReqVO.getPageSize(), sort); QueryBuilder queryBuilder = new QueryBuilder(); //動態拼接查詢條件 if (!StringUtils.isEmpty(studentReqVO.getName())) { Pattern pattern = Pattern.compile('^.*' + studentReqVO.getName() + '.*$', Pattern.CASE_INSENSITIVE); queryBuilder.and('name').regex(pattern); } if (studentReqVO.getSex() != null) { queryBuilder.and('sex').is(studentReqVO.getSex()); } if (studentReqVO.getCreateTime() != null) { queryBuilder.and('createTime').lessThanEquals(studentReqVO.getCreateTime()); } Query query = new BasicQuery(queryBuilder.get().toString()); //計算總數 long total = mongoTemplate.count(query, Student.class); //查詢結果集條件 BasicDBObject fieldsObject = new BasicDBObject(); //id默認有值,可不指定 fieldsObject.append('id', 1) //1查詢,返回數據中有值;0不查詢,無值.append('name', 1); query = new BasicQuery(queryBuilder.get().toString(), fieldsObject.toJson()); //查詢結果集 List<Student> studentList = mongoTemplate.find(query.with(pageable), Student.class); Page<Student> studentPage = new PageImpl(studentList, pageable, total); return studentPage;}

四、MongoTemplate結合Aggregation

使用Aggregation聚合查詢 支持返回固定字段 支持分組計算總數、求和、平均值、最大值、最小值等等

public Page<Student> getListWithAggregation(StudentReqVO studentReqVO) { Sort sort = Sort.by(Sort.Direction.DESC, 'createTime'); Pageable pageable = PageRequest.of(studentReqVO.getPageNum(), studentReqVO.getPageSize(), sort); Integer pageNum = studentReqVO.getPageNum(); Integer pageSize = studentReqVO.getPageSize(); List<AggregationOperation> operations = new ArrayList<>(); if (!StringUtils.isEmpty(studentReqVO.getName())) { Pattern pattern = Pattern.compile('^.*' + studentReqVO.getName() + '.*$', Pattern.CASE_INSENSITIVE); Criteria criteria = Criteria.where('name').regex(pattern); operations.add(Aggregation.match(criteria)); } if (null != studentReqVO.getSex()) { operations.add(Aggregation.match(Criteria.where('sex').is(studentReqVO.getSex()))); } long totalCount = 0; //獲取滿足添加的總頁數 if (null != operations && operations.size() > 0) { Aggregation aggregationCount = Aggregation.newAggregation(operations); //operations為空,會報錯 AggregationResults<Student> resultsCount = mongoTemplate.aggregate(aggregationCount, 'student', Student.class); totalCount = resultsCount.getMappedResults().size(); } else { List<Student> list = mongoTemplate.findAll(Student.class); totalCount = list.size(); } operations.add(Aggregation.skip((long) pageNum * pageSize)); operations.add(Aggregation.limit(pageSize)); operations.add(Aggregation.sort(Sort.Direction.DESC, 'createTime')); Aggregation aggregation = Aggregation.newAggregation(operations); AggregationResults<Student> results = mongoTemplate.aggregate(aggregation, 'student', Student.class); //查詢結果集 Page<Student> studentPage = new PageImpl(results.getMappedResults(), pageable, totalCount); return studentPage;}

以上就是JAVA代碼實現MongoDB動態條件之分頁查詢的詳細內容,更多關于JAVA 實現MongoDB分頁查詢的資料請關注好吧啦網其它相關文章!

標簽: Java
相關文章:
主站蜘蛛池模板: 日本一级黄色毛片 | 日本精品久久久一区二区三区 | 国产精品一区三区 | 久操视频网站 | 91影视在线 | 欧美a在线视频 | 国产高清尿小便嘘嘘视频 | 欧美成人久久 | 久久91综合国产91久久精品 | 欧美最刺激好看的一级毛片 | 日本免费黄色网 | 久草免费在线色站 | 在线观看免费国产视频 | 国产黄色大片 | 女人被狂躁的视频免费一一 | 婷婷中文在线 | 天天噜噜色 | 丁香五婷婷 | 特级女人十八毛片a级 | 色综合天天综合网国产成人网 | 国产亚洲一区二区三区 | 日韩在线一区二区三区免费视频 | 国产一级特黄a大片免费 | 在浴室边摸边吃奶边做视频 | 亚洲三级精品 | 亚洲国产日韩在线人成蜜芽 | 黄色综合 | 美国毛片毛片全部免费 | 久久久久久久免费视频 | 久久国产亚洲观看 | 自拍亚洲国产 | 国产99视频精品免视看7 | 国产一级爱c片免费观看 | 久久精品视频亚洲 | 欧美日韩国产另类在线观看 | 精品国内一区二区三区免费视频 | 91天天操| 达达兔午夜起神影院在线观看麻烦 | 国产乱子精品免费视观看片 | 爽爽爽爽爽爽a成人免费视频 | 亚洲一区二区观看 |