在开发过程中,spring集成mongodb的jar包。
如果需要使用排序功能。
spring-data-mongodb-1.4.1.RELEASE.jar 的版本为1.4.1,如果使用如下代码:
Query query = new Query(criteria);query.with(new Sort(new Sort.Order(Direction.DESC, "create_time")));return this.mongoTemplate.find(query.skip(position).limit(pagesize), beanClass,collectionname);
spring-data-commons的jar包,需要使用spring-data-commons-1.6.0.RELEASE.jar。 使用1.5.0版本不支持,使用1.8.0版本也不兼容。
spring-data-mongodb-1.4.1.RELEASE.jar如果使用1.4一下版本,副本集的配置方式就不好用。