数据库
首页 > 数据库> > MongoDB(3):MongoTemplate之Query

MongoDB(3):MongoTemplate之Query

作者:互联网

1. 简介

MongDB的MongoTemplate对Query的定义是Query object representing criteria, projection, sorting and query hints,即MongoDB使用Query对象完成条件、投影、排序等查询操作。

2. 使用方法

public List<GeoModel> query() {
	Query query = new Query();
	Criteria criteria = Criteria
		.where("uId").is("4")
		.and("time").gt(LocalDateTime.now()).lt(LocalDateTime.now().plusHours(10));
	query.addCriteria(criteria);
	return mongoTemplate.find(query, GeoModel.class);
}

标签:MongoDB,Query,MongoTemplate,criteria,query,now
来源: https://blog.csdn.net/ShallDid/article/details/110287328