Class ReactivePartTreeMongoQuery
java.lang.Object
org.springframework.data.mongodb.repository.query.AbstractReactiveMongoQuery
org.springframework.data.mongodb.repository.query.ReactivePartTreeMongoQuery
- All Implemented Interfaces:
org.springframework.data.repository.query.RepositoryQuery
Reactive PartTree
RepositoryQuery
implementation for Mongo.- Since:
- 2.0
- Author:
- Mark Paluch, Christoph Strobl
-
Constructor Summary
ConstructorDescriptionReactivePartTreeMongoQuery
(ReactiveMongoQueryMethod method, ReactiveMongoOperations mongoOperations, org.springframework.expression.ExpressionParser expressionParser, org.springframework.data.repository.query.ReactiveQueryMethodEvaluationContextProvider evaluationContextProvider) -
Method Summary
Modifier and TypeMethodDescriptionprotected reactor.core.publisher.Mono<Query>
createCountQuery
(ConvertingParameterAccessor accessor) Creates aQuery
instance using the givenConvertingParameterAccessor
.protected reactor.core.publisher.Mono<Query>
createQuery
(ConvertingParameterAccessor accessor) Creates aQuery
instance using the givenParameterAccessor
org.springframework.data.repository.query.parser.PartTree
getTree()
Return thePartTree
backing the query.protected boolean
Returns whether the query should get a count projection applied.protected boolean
Return weather the query should delete matching documents.protected boolean
Returns whether the query should get an exists projection applied.protected boolean
Return whether the query has an explicit limit set.Methods inherited from class org.springframework.data.mongodb.repository.query.AbstractReactiveMongoQuery
createUpdate, doExecute, execute, getCodecRegistry, getParameterBindingCodec, getQueryMethod, getSpelEvaluatorFor, parseAggregationPipeline
-
Constructor Details
-
ReactivePartTreeMongoQuery
public ReactivePartTreeMongoQuery(ReactiveMongoQueryMethod method, ReactiveMongoOperations mongoOperations, org.springframework.expression.ExpressionParser expressionParser, org.springframework.data.repository.query.ReactiveQueryMethodEvaluationContextProvider evaluationContextProvider) - Parameters:
method
- must not be null.mongoOperations
- must not be null.expressionParser
- must not be null.evaluationContextProvider
- must not be null.
-
-
Method Details
-
getTree
public org.springframework.data.repository.query.parser.PartTree getTree()Return thePartTree
backing the query.- Returns:
- the tree
-
createQuery
Description copied from class:AbstractReactiveMongoQuery
Creates aQuery
instance using the givenParameterAccessor
- Specified by:
createQuery
in classAbstractReactiveMongoQuery
- Parameters:
accessor
- must not be null.- Returns:
-
createCountQuery
Description copied from class:AbstractReactiveMongoQuery
Creates aQuery
instance using the givenConvertingParameterAccessor
. Will delegate toAbstractReactiveMongoQuery.createQuery(ConvertingParameterAccessor)
by default but allows customization of the count query to be triggered.- Overrides:
createCountQuery
in classAbstractReactiveMongoQuery
- Parameters:
accessor
- must not be null.- Returns:
-
isCountQuery
protected boolean isCountQuery()Description copied from class:AbstractReactiveMongoQuery
Returns whether the query should get a count projection applied.- Specified by:
isCountQuery
in classAbstractReactiveMongoQuery
- Returns:
-
isExistsQuery
protected boolean isExistsQuery()Description copied from class:AbstractReactiveMongoQuery
Returns whether the query should get an exists projection applied.- Specified by:
isExistsQuery
in classAbstractReactiveMongoQuery
- Returns:
-
isDeleteQuery
protected boolean isDeleteQuery()Description copied from class:AbstractReactiveMongoQuery
Return weather the query should delete matching documents.- Specified by:
isDeleteQuery
in classAbstractReactiveMongoQuery
- Returns:
-
isLimiting
protected boolean isLimiting()Description copied from class:AbstractReactiveMongoQuery
Return whether the query has an explicit limit set.- Specified by:
isLimiting
in classAbstractReactiveMongoQuery
- Returns:
-