- java.lang.Object
-
- jakarta.el.ELResolver
-
- jakarta.el.BeanELResolver
-
public class BeanELResolver extends ELResolver
Defines property resolution behavior on objects using the JavaBeans component architecture.This resolver handles base objects of any type, as long as the base is not
null
. It accepts any object as a property or method, and coerces it to a string.For property resolution, the property string is used to find a JavaBeans compliant property on the base object. The value is accessed using JavaBeans getters and setters.
For method resolution, the method string is the name of the method in the bean. The parameter types can be optionally specified to identify the method. If the parameter types are not specified, the parameter objects are used in the method resolution.
The JavaBeans specification predates the introduction of default method implementations defined on an interface. In addition to the JavaBeans specification requirements for looking up property getters, property setters and methods, this resolver also considers default methods and includes them in the results.
This resolver can be constructed in read-only mode, which means that
isReadOnly
will always returntrue
andsetValue(jakarta.el.ELContext, java.lang.Object, java.lang.Object, java.lang.Object)
will always throwPropertyNotWritableException
.ELResolver
s are combined together usingCompositeELResolver
s, to define rich semantics for evaluating an expression. See the javadocs forELResolver
for details.Because this resolver handles base objects of any type, it should be placed near the end of a composite resolver. Otherwise, it will claim to have resolved a property before any resolvers that come after it get a chance to test if they can do so as well.
- Since:
- Jakarta Server Pages 2.1
- See Also:
CompositeELResolver
,ELResolver
-
-
Field Summary
-
Fields inherited from class jakarta.el.ELResolver
RESOLVABLE_AT_DESIGN_TIME, TYPE
-
-
Constructor Summary
Constructors Constructor Description BeanELResolver()
Creates a new read/writeBeanELResolver
.BeanELResolver(boolean isReadOnly)
Creates a newBeanELResolver
whose read-only status is determined by the given parameter.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description Class<?>
getCommonPropertyType(ELContext context, Object base)
If the base object is notnull
, returns the most general type that this resolver accepts for theproperty
argument.Iterator<FeatureDescriptor>
getFeatureDescriptors(ELContext context, Object base)
Deprecated, for removal: This API element is subject to removal in a future version.This method will be removed without replacement in EL 6.0Class<?>
getType(ELContext context, Object base, Object property)
If the base object is notnull
, returns the most general acceptable type that can be set on this bean property.Object
getValue(ELContext context, Object base, Object property)
If the base object is notnull
, returns the current value of the given property on this bean.Object
invoke(ELContext context, Object base, Object methodName, Class<?>[] paramTypes, Object[] params)
If the base object is notnull
, invoke the method, with the given parameters on this bean.boolean
isReadOnly(ELContext context, Object base, Object property)
If the base object is notnull
, returns whether a call tosetValue(jakarta.el.ELContext, java.lang.Object, java.lang.Object, java.lang.Object)
will always fail.void
setValue(ELContext context, Object base, Object property, Object val)
If the base object is notnull
, attempts to set the value of the given property on this bean.-
Methods inherited from class jakarta.el.ELResolver
convertToType
-
-
-
-
Constructor Detail
-
BeanELResolver
public BeanELResolver()
Creates a new read/writeBeanELResolver
.
-
BeanELResolver
public BeanELResolver(boolean isReadOnly)
Creates a newBeanELResolver
whose read-only status is determined by the given parameter.- Parameters:
isReadOnly
-true
if this resolver cannot modify beans;false
otherwise.
-
-
Method Detail
-
getType
public Class<?> getType(ELContext context, Object base, Object property)
If the base object is notnull
, returns the most general acceptable type that can be set on this bean property.If the base is not
null
, thepropertyResolved
property of theELContext
object must be set totrue
by this resolver, before returning. If this property is nottrue
after this method is called, the caller should ignore the return value.The provided property will first be coerced to a
String
. If there is aBeanInfoProperty
for this property, there were no errors retrieving it and neither the property nor the resolver are read-only, thepropertyType
of thepropertyDescriptor
is returned. If the property is resolved but either the property or the resolver is read-only thennull
will be returned. Otherwise, aPropertyNotFoundException
is thrown.- Specified by:
getType
in classELResolver
- Parameters:
context
- The context of this evaluation.base
- The bean to analyze.property
- The name of the property to analyze. Will be coerced to aString
.- Returns:
- If the
propertyResolved
property ofELContext
was set totrue
, then the most general acceptable type which must benull
if the either the property or the resolver is read-only; otherwise undefined - Throws:
NullPointerException
- if context isnull
PropertyNotFoundException
- ifbase
is notnull
and the specified property does not exist or is not readable.ELException
- if an exception was thrown while performing the property or variable resolution. The thrown exception must be included as the cause property of this exception, if available.
-
getValue
public Object getValue(ELContext context, Object base, Object property)
If the base object is notnull
, returns the current value of the given property on this bean.If the base is not
null
, thepropertyResolved
property of theELContext
object must be set totrue
by this resolver, before returning. If this property is nottrue
after this method is called, the caller should ignore the return value.The provided property name will first be coerced to a
String
. If the property is a readable property of the base object, as per the JavaBeans specification, then return the result of the getter call. If the getter throws an exception, it is propagated to the caller. If the property is not found or is not readable, aPropertyNotFoundException
is thrown.- Specified by:
getValue
in classELResolver
- Parameters:
context
- The context of this evaluation.base
- The bean on which to get the property.property
- The name of the property to get. Will be coerced to aString
.- Returns:
- If the
propertyResolved
property ofELContext
was set totrue
, then the value of the given property. Otherwise, undefined. - Throws:
NullPointerException
- if context isnull
.PropertyNotFoundException
- ifbase
is notnull
and the specified property does not exist or is not readable.ELException
- if an exception was thrown while performing the property or variable resolution. The thrown exception must be included as the cause property of this exception, if available.
-
setValue
public void setValue(ELContext context, Object base, Object property, Object val)
If the base object is notnull
, attempts to set the value of the given property on this bean.If the base is not
null
, thepropertyResolved
property of theELContext
object must be set totrue
by this resolver, before returning. If this property is nottrue
after this method is called, the caller can safely assume no value was set.If this resolver was constructed in read-only mode, this method will always throw
PropertyNotWritableException
.The provided property name will first be coerced to a
String
. If property is a writable property ofbase
(as per the JavaBeans Specification), the setter method is called (passingvalue
). If the property exists but does not have a setter, then aPropertyNotFoundException
is thrown. If the property does not exist, aPropertyNotFoundException
is thrown.- Specified by:
setValue
in classELResolver
- Parameters:
context
- The context of this evaluation.base
- The bean on which to set the property.property
- The name of the property to set. Will be coerced to aString
.val
- The value to be associated with the specified key.- Throws:
NullPointerException
- if context isnull
.PropertyNotFoundException
- ifbase
is notnull
and the specified property does not exist.PropertyNotWritableException
- if this resolver was constructed in read-only mode, or if there is no setter for the property.ELException
- if an exception was thrown while performing the property or variable resolution. The thrown exception must be included as the cause property of this exception, if available.
-
invoke
public Object invoke(ELContext context, Object base, Object methodName, Class<?>[] paramTypes, Object[] params)
If the base object is notnull
, invoke the method, with the given parameters on this bean. The return value from the method is returned.If the base is not
null
, thepropertyResolved
property of theELContext
object must be set totrue
by this resolver, before returning. If this property is nottrue
after this method is called, the caller should ignore the return value.The provided method object will first be coerced to a
String
. The methods in the bean is then examined and an attempt will be made to select one for invocation. If no suitable can be found, aMethodNotFoundException
is thrown. If the given paramTypes is notnull
, select the method with the given name and parameter types. Else select the method with the given name that has the same number of parameters. If there are more than one such method, the method selection process is undefined. Else select the method with the given name that takes a variable number of arguments. Note the resolution for overloaded methods will likely be clarified in a future version of the spec. The provide parameters are coerced to the corresponding parameter types of the method, and the method is then invoked.- Overrides:
invoke
in classELResolver
- Parameters:
context
- The context of this evaluation.base
- The bean on which to invoke the methodmethodName
- The simple name of the method to invoke. Will be coerced to aString
. If method is "<init>"or "<clinit>" a MethodNotFoundException is thrown.paramTypes
- An array of Class objects identifying the method's formal parameter types, in declared order. Use an empty array if the method has no parameters. Can benull
, in which case the method's formal parameter types are assumed to be unknown.params
- The parameters to pass to the method, ornull
if no parameters.- Returns:
- The result of the method invocation (
null
if the method has avoid
return type). - Throws:
MethodNotFoundException
- if no suitable method can be found.ELException
- if an exception was thrown while performing (base, method) resolution. The thrown exception must be included as the cause property of this exception, if available. If the exception thrown is anInvocationTargetException
, extract itscause
and pass it to theELException
constructor.- Since:
- Jakarta Expression Language 2.2
-
isReadOnly
public boolean isReadOnly(ELContext context, Object base, Object property)
If the base object is notnull
, returns whether a call tosetValue(jakarta.el.ELContext, java.lang.Object, java.lang.Object, java.lang.Object)
will always fail.If the base is not
null
, thepropertyResolved
property of theELContext
object must be set totrue
by this resolver, before returning. If this property is nottrue
after this method is called, the caller can safely assume no value was set.If this resolver was constructed in read-only mode, this method will always return
true
.The provided property name will first be coerced to a
String
. If property is a writable property ofbase
,false
is returned. If the property is found but is not writable,true
is returned. If the property is not found, aPropertyNotFoundException
is thrown.- Specified by:
isReadOnly
in classELResolver
- Parameters:
context
- The context of this evaluation.base
- The bean to analyze.property
- The name of the property to analyzed. Will be coerced to aString
.- Returns:
- If the
propertyResolved
property ofELContext
was set totrue
, thentrue
if calling thesetValue
method will always fail orfalse
if it is possible that such a call may succeed; otherwise undefined. - Throws:
NullPointerException
- if context isnull
PropertyNotFoundException
- ifbase
is notnull
and the specified property does not exist.ELException
- if an exception was thrown while performing the property or variable resolution. The thrown exception must be included as the cause property of this exception, if available.
-
getFeatureDescriptors
@Deprecated(forRemoval=true, since="5.0") public Iterator<FeatureDescriptor> getFeatureDescriptors(ELContext context, Object base)
Deprecated, for removal: This API element is subject to removal in a future version.This method will be removed without replacement in EL 6.0If the base object is notnull
, returns anIterator
containing the set of JavaBeans properties available on the given object. Otherwise, returnsnull
.The
Iterator
returned must contain zero or more instances ofFeatureDescriptor
. Each info object contains information about a property in the bean, as obtained by calling theBeanInfo.getPropertyDescriptors
method. TheFeatureDescriptor
is initialized using the same fields as are present in thePropertyDescriptor
, with the additional required named attributes "type
" and "resolvableAtDesignTime
" set as follows:ELResolver.TYPE
- The runtime type of the property, fromPropertyDescriptor.getPropertyType()
.ELResolver.RESOLVABLE_AT_DESIGN_TIME
-true
.
- Overrides:
getFeatureDescriptors
in classELResolver
- Parameters:
context
- The context of this evaluation.base
- The bean to analyze.- Returns:
- An
Iterator
containing zero or moreFeatureDescriptor
objects, each representing a property on this bean, ornull
if thebase
object isnull
. - See Also:
FeatureDescriptor
-
getCommonPropertyType
public Class<?> getCommonPropertyType(ELContext context, Object base)
If the base object is notnull
, returns the most general type that this resolver accepts for theproperty
argument. Otherwise, returnsnull
.Assuming the base is not
null
, this method will always returnObject.class
. This is because any object is accepted as a key and is coerced into a string.- Specified by:
getCommonPropertyType
in classELResolver
- Parameters:
context
- The context of this evaluation.base
- The bean to analyze.- Returns:
null
if base isnull
; otherwiseObject.class
.
-
-