org.springframework.expression.spel.support
Class ReflectiveMethodResolver
java.lang.Object
org.springframework.expression.spel.support.ReflectiveMethodResolver
- All Implemented Interfaces:
- MethodResolver
public class ReflectiveMethodResolver
- extends Object
- implements MethodResolver
A method resolver that uses reflection to locate the method that should be invoked
- Since:
- 3.0
- Author:
- Andy Clement
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
ReflectiveMethodResolver
public ReflectiveMethodResolver()
resolve
public MethodExecutor resolve(EvaluationContext context,
Object targetObject,
String name,
Class<?>[] argumentTypes)
throws AccessException
- Locate a method on a type. There are three kinds of match that might occur:
- An exact match where the types of the arguments match the types of the constructor
- An in-exact match where the types we are looking for are subtypes of those defined on the constructor
- A match where we are able to convert the arguments into those expected by the constructor, according to the
registered type converter.
- Specified by:
resolve
in interface MethodResolver
- Parameters:
context
- the current evaluation contexttargetObject
- the object upon which the method is being calledargumentTypes
- the arguments that the constructor must be able to handle
- Returns:
- a MethodExecutor that can invoke the method, or null if the method cannot be found
- Throws:
AccessException
registerMethodFilter
public void registerMethodFilter(Class<?> type,
MethodFilter filter)