| Package | Description | 
|---|---|
| org.springframework.expression | 
 Core abstractions behind the Spring Expression Language. 
 | 
| org.springframework.expression.spel.support | 
 SpEL's default implementations for various core abstractions. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
List<MethodResolver> | 
EvaluationContext.getMethodResolvers()
Return a list of resolvers that will be asked in turn to locate a method. 
 | 
| Modifier and Type | Class and Description | 
|---|---|
class  | 
DataBindingMethodResolver
A  
MethodResolver variant for data binding
 purposes, using reflection to access instance methods on a given target object. | 
class  | 
ReflectiveMethodResolver
Reflection-based  
MethodResolver used by default in StandardEvaluationContext
 unless explicit method resolvers have been specified. | 
| Modifier and Type | Method and Description | 
|---|---|
List<MethodResolver> | 
StandardEvaluationContext.getMethodResolvers()  | 
List<MethodResolver> | 
SimpleEvaluationContext.getMethodResolvers()
Return the specified  
MethodResolver delegates, if any. | 
| Modifier and Type | Method and Description | 
|---|---|
void | 
StandardEvaluationContext.addMethodResolver(MethodResolver resolver)  | 
boolean | 
StandardEvaluationContext.removeMethodResolver(MethodResolver methodResolver)  | 
SimpleEvaluationContext.Builder | 
SimpleEvaluationContext.Builder.withMethodResolvers(MethodResolver... resolvers)
Register the specified  
MethodResolver delegates for
 a combination of property access and method resolution. | 
| Modifier and Type | Method and Description | 
|---|---|
void | 
StandardEvaluationContext.setMethodResolvers(List<MethodResolver> methodResolvers)  |