- #{resource['library:resource']}
- #{resource['resource']}
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionClass<?> getCommonPropertyType(ELContext context, Object base) Returns the most general type that this resolver accepts for thepropertyargument, given abaseobject.Class<?> For a givenbaseandproperty, attempts to identify the most general type that is acceptable for an object to be passed as thevalueparameter in a future call to theELResolver.setValue(jakarta.el.ELContext, java.lang.Object, java.lang.Object, java.lang.Object)method.If base and property are notnulland base is an instance ofResourceHandler, perform the following: Ifpropertydoesn't contain:treatpropertyas the resource name and passpropertytoResourceHandler.createResource(String)Ifpropertycontains a single:treat the content before the:as the library name, and the content after the:to be the resource name and pass both toResourceHandler.createResource(String, String)Ifpropertycontains more than one:then throw aELExceptionIf one of the above steps resulted in the creation of aResourceinstance, callELContext.setPropertyResolved(true)and return the result ofResource.getRequestPath()booleanisReadOnly(ELContext context, Object base, Object property) For a givenbaseandproperty, attempts to determine whether a call toELResolver.setValue(jakarta.el.ELContext, java.lang.Object, java.lang.Object, java.lang.Object)will always fail.voidThis is basically a no-op.Methods inherited from class jakarta.el.ELResolver
convertToType, invoke
-
Constructor Details
-
ResourceELResolver
public ResourceELResolver()
-
-
Method Details
-
getValue
If base and property are notnulland base is an instance ofResourceHandler, perform the following:- If
propertydoesn't contain:treatpropertyas the resource name and passpropertytoResourceHandler.createResource(String) - If
propertycontains a single:treat the content before the:as the library name, and the content after the:to be the resource name and pass both toResourceHandler.createResource(String, String) - If
propertycontains more than one:then throw aELException - If one of the above steps resulted in the creation of a
Resourceinstance, callELContext.setPropertyResolved(true)and return the result ofResource.getRequestPath()
- Specified by:
getValuein classELResolver- Parameters:
context- The context of this evaluation.base- The base object whose property value is to be returned, ornullto resolve a top-level variable.property- The property or variable to be resolved.- Returns:
- If the
propertyResolvedproperty ofELContextwas set totrue, then the result of the variable or property resolution; otherwise undefined. - See Also:
- If
-
getType
Description copied from class:ELResolverFor a givenbaseandproperty, attempts to identify the most general type that is acceptable for an object to be passed as thevalueparameter in a future call to theELResolver.setValue(jakarta.el.ELContext, java.lang.Object, java.lang.Object, java.lang.Object)method.If this resolver handles the given (base, property) pair, the
propertyResolvedproperty of theELContextobject must be set totrueby the resolver, before returning. If this property is nottrueafter this method is called, the caller should ignore the return value.This is not always the same as
getValue().getClass(). For example, in the case of anArrayELResolver, thegetTypemethod will return the element type of the array, which might be a superclass of the type of the actual element that is currently in the specified array element.If the resolver or the property is read-only, this method must return
null.- Specified by:
getTypein classELResolver- Parameters:
context- The context of this evaluation.base- The base object whose property value is to be analyzed, ornullto analyze a top-level variable.property- The property or variable to return the acceptable type for.- Returns:
nullas this resolver only performs lookups- Throws:
PropertyNotFoundException- if base and property are null
-
setValue
This is basically a no-op.- Specified by:
setValuein classELResolver- Parameters:
context- The context of this evaluation.base- The base object whose property value is to be set, ornullto set a top-level variable.property- The property or variable to be set.value- The value to set the property or variable to.- Throws:
PropertyNotFoundException- if base and property are null
-
isReadOnly
Description copied from class:ELResolverFor a givenbaseandproperty, attempts to determine whether a call toELResolver.setValue(jakarta.el.ELContext, java.lang.Object, java.lang.Object, java.lang.Object)will always fail.If this resolver handles the given (base, property) pair, the
propertyResolvedproperty of theELContextobject must be set totrueby the resolver, before returning. If this property is nottrueafter this method is called, the caller should ignore the return value.- Specified by:
isReadOnlyin classELResolver- Parameters:
context- The context of this evaluation.base- The base object whose property value is to be analyzed, ornullto analyze a top-level variable.property- The property or variable to return the read-only status for.- Returns:
false(basically ignored by the EL system)- Throws:
PropertyNotFoundException- if base and property are null
-
getCommonPropertyType
Description copied from class:ELResolverReturns the most general type that this resolver accepts for thepropertyargument, given abaseobject. One use for this method is to assist tools in auto-completion.This assists tools in auto-completion and also provides a way to express that the resolver accepts a primitive value, such as an integer index into an array. For example, the
ArrayELResolverwill accept anyintas aproperty, so the return value would beInteger.class.- Specified by:
getCommonPropertyTypein classELResolver- Parameters:
context- The context of this evaluation.base- The base object to return the most general property type for, ornullto enumerate the set of top-level variables that this resolver can evaluate.- Returns:
String.class- getType() expects String properties
-