Package org.apache.jasper.el
Class JasperELResolver
java.lang.Object
jakarta.el.ELResolver
jakarta.el.CompositeELResolver
org.apache.jasper.el.JasperELResolver
Jasper-specific CompositeELResolver that optimizes certain functions to avoid
unnecessary resolver calls.
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic class
Extend ELResolver for Graal to avoid bean info use if possible, as BeanELResolver needs manual reflection configuration. -
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
add
(ELResolver elResolver) Obtain the value of the given property on the given object using the given context.Invokes a method on the the given object.Methods inherited from class jakarta.el.CompositeELResolver
convertToType, getCommonPropertyType, getType, isReadOnly, setValue
-
Constructor Details
-
JasperELResolver
-
-
Method Details
-
add
- Overrides:
add
in classCompositeELResolver
-
getValue
public Object getValue(ELContext context, Object base, Object property) throws NullPointerException, PropertyNotFoundException, ELException Description copied from class:jakarta.el.ELResolver
Obtain the value of the given property on the given object using the given context.- Overrides:
getValue
in classCompositeELResolver
- Parameters:
context
- The EL context for this evaluationbase
- The base object on which the property is to be foundproperty
- The property whose value is to be returned- Returns:
- the value of the provided property
- Throws:
NullPointerException
- If the supplied context isnull
PropertyNotFoundException
- If the base/property combination provided to the resolver is one that the resolver can handle but no match was found or a match was found but was not readableELException
- Wraps any exception throw whilst resolving the property
-
invoke
public Object invoke(ELContext context, Object base, Object method, Class<?>[] paramTypes, Object[] params) Description copied from class:jakarta.el.ELResolver
Invokes a method on the the given object.- Overrides:
invoke
in classCompositeELResolver
- Parameters:
context
- The EL context for this evaluationbase
- The base object on which the method is to be foundmethod
- The method to invokeparamTypes
- The types of the parameters of the method to invokeparams
- The parameters with which to invoke the method- Returns:
- This default implementation always returns
null
-