【Spring连载】使用Spring Data访问 MongoDB(十四)----Mongodb特有的查询方法
- 一、定义通用查询方法
- 二、MongoDB特有的查询方法
-
- [2.1 地理空间查询Geo-spatial Queries](#2.1 地理空间查询Geo-spatial Queries)
- [2.2 基于JSON的查询方法和字段限制](#2.2 基于JSON的查询方法和字段限制)
- [2.3 使用SpEL表达式的基于JSON的查询](#2.3 使用SpEL表达式的基于JSON的查询)
- [2.4 全文检索查询](#2.4 全文检索查询)
- [2.5 聚合方法Aggregation Methods](#2.5 聚合方法Aggregation Methods)
- [2.6 Query by Example](#2.6 Query by Example)
一、定义通用查询方法
见定义查询方法。
二、MongoDB特有的查询方法
Most of the data access operations you usually trigger on a repository result in a query being executed against the MongoDB databases. Defining such a query is a matter of declaring a method on the repository interface, as the following example shows:
PersonRepository with query methods