1. 程式人生 > >使用spring data 對mongodb實現簡單分頁

使用spring data 對mongodb實現簡單分頁

//對某一書籍下的所有dxh按訪問量排序並分頁
	public List<CKDXH> getPartitionDXHCKCountByBookIdandDes(Integer bookId,Integer start,Integer pagesize){
		return mongoTemplate.find(new Query(Criteria.where("bookId").is(bookId)).with(new Sort(new Sort.Order(Sort.Direction.DESC,"count"))).skip(start).limit(pagesize), CKDXH.class);
	}