Uses of Interface
org.springframework.expression.MethodResolver
Packages that use MethodResolver
Package
Description
Core abstractions behind the Spring Expression Language.
SpEL's default implementations for various core abstractions.
-
Uses of MethodResolver in org.springframework.expression
Methods in org.springframework.expression that return types with arguments of type MethodResolverModifier and TypeMethodDescriptiondefault List<MethodResolver>
EvaluationContext.getMethodResolvers()
Return a list of resolvers that will be asked in turn to locate a method. -
Uses of MethodResolver in org.springframework.expression.spel.support
Classes in org.springframework.expression.spel.support that implement MethodResolverModifier and TypeClassDescriptionfinal class
AnMethodResolver
variant for data binding purposes, using reflection to access instance methods on a given target object.class
Reflection-basedMethodResolver
used by default inStandardEvaluationContext
unless explicit method resolvers have been specified.Methods in org.springframework.expression.spel.support that return types with arguments of type MethodResolverModifier and TypeMethodDescriptionSimpleEvaluationContext.getMethodResolvers()
Return the specifiedMethodResolver
delegates, if any.StandardEvaluationContext.getMethodResolvers()
Get the list of method resolvers to use in this evaluation context.Methods in org.springframework.expression.spel.support with parameters of type MethodResolverModifier and TypeMethodDescriptionvoid
StandardEvaluationContext.addMethodResolver
(MethodResolver methodResolver) Add the supplied method resolver to this evaluation context.boolean
StandardEvaluationContext.removeMethodResolver
(MethodResolver methodResolver) Remove the supplied method resolver from this evaluation context.SimpleEvaluationContext.Builder.withMethodResolvers
(MethodResolver... resolvers) Register the specifiedMethodResolver
delegates for a combination of property access and method resolution.Method parameters in org.springframework.expression.spel.support with type arguments of type MethodResolverModifier and TypeMethodDescriptionvoid
StandardEvaluationContext.setMethodResolvers
(List<MethodResolver> methodResolvers) Set the list of method resolvers to use in this evaluation context.