本文主要是介绍【Spring连载】使用Spring Data访问 MongoDB(十四)----Mongodb特有的查询方法,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
【Spring连载】使用Spring Data访问 MongoDB(十四)----Mongodb特有的查询方法
- 一、定义通用查询方法
- 二、MongoDB特有的查询方法
- 2.1 地理空间查询Geo-spatial Queries
- 2.2 基于JSON的查询方法和字段限制
- 2.3 使用SpEL表达式的基于JSON的查询
- 2.4 全文检索查询
- 2.5 聚合方法Aggregation Methods
- 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
2.1 地理空间查询Geo-spatial Queries
2.2 基于JSON的查询方法和字段限制
2.3 使用SpEL表达式的基于JSON的查询
2.4 全文检索查询
2.5 聚合方法Aggregation Methods
2.6 Query by Example
这篇关于【Spring连载】使用Spring Data访问 MongoDB(十四)----Mongodb特有的查询方法的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!