Uses of Interface
org.springframework.expression.PropertyAccessor
Packages that use PropertyAccessor
Package
Description
Expression parsing support within a Spring application context.
Core abstractions behind the Spring Expression Language.
SpEL's central implementation package.
SpEL's abstract syntax tree.
SpEL's default implementations for various core abstractions.
-
Uses of PropertyAccessor in org.springframework.context.expression
Classes in org.springframework.context.expression that implement PropertyAccessorModifier and TypeClassDescriptionclass
EL property accessor that knows how to traverse the beans and contextual objects of a SpringBeanExpressionContext
.class
EL property accessor that knows how to traverse the beans of a SpringBeanFactory
.class
Read-only EL property accessor that knows how to retrieve keys of a SpringEnvironment
instance.class
EL property accessor that knows how to traverse the keys of a standardMap
. -
Uses of PropertyAccessor in org.springframework.expression
Methods in org.springframework.expression that return types with arguments of type PropertyAccessorModifier and TypeMethodDescriptionEvaluationContext.getPropertyAccessors()
Return a list of accessors that will be asked in turn to read/write a property. -
Uses of PropertyAccessor in org.springframework.expression.spel
Subinterfaces of PropertyAccessor in org.springframework.expression.spelModifier and TypeInterfaceDescriptioninterface
A compilable property accessor is able to generate bytecode that represents the access operation, facilitating compilation to bytecode of expressions that use the accessor.Methods in org.springframework.expression.spel that return types with arguments of type PropertyAccessor -
Uses of PropertyAccessor in org.springframework.expression.spel.ast
Methods in org.springframework.expression.spel.ast that return types with arguments of type PropertyAccessorModifier and TypeMethodDescriptionstatic List<PropertyAccessor>
AstUtils.getPropertyAccessorsToTry
(Class<?> targetType, List<PropertyAccessor> propertyAccessors) Determines the set of property resolvers that should be used to try and access a property on the specified target type.Method parameters in org.springframework.expression.spel.ast with type arguments of type PropertyAccessorModifier and TypeMethodDescriptionstatic List<PropertyAccessor>
AstUtils.getPropertyAccessorsToTry
(Class<?> targetType, List<PropertyAccessor> propertyAccessors) Determines the set of property resolvers that should be used to try and access a property on the specified target type. -
Uses of PropertyAccessor in org.springframework.expression.spel.support
Classes in org.springframework.expression.spel.support that implement PropertyAccessorModifier and TypeClassDescriptionfinal class
APropertyAccessor
variant for data binding purposes, using reflection to access properties for reading and possibly writing.class
A powerfulPropertyAccessor
that uses reflection to access properties for reading and possibly also for writing on a target instance.static class
An optimized form of a PropertyAccessor that will use reflection but only knows how to access a particular property on a particular class.Methods in org.springframework.expression.spel.support that return PropertyAccessorModifier and TypeMethodDescriptionReflectivePropertyAccessor.createOptimalAccessor
(EvaluationContext context, Object target, String name) Attempt to create an optimized property accessor tailored for a property of a particular name on a particular class.Methods in org.springframework.expression.spel.support that return types with arguments of type PropertyAccessorModifier and TypeMethodDescriptionSimpleEvaluationContext.getPropertyAccessors()
Return the specifiedPropertyAccessor
delegates, if any.StandardEvaluationContext.getPropertyAccessors()
Methods in org.springframework.expression.spel.support with parameters of type PropertyAccessorModifier and TypeMethodDescriptionvoid
StandardEvaluationContext.addPropertyAccessor
(PropertyAccessor accessor) SimpleEvaluationContext.forPropertyAccessors
(PropertyAccessor... accessors) Create aSimpleEvaluationContext
for the specifiedPropertyAccessor
delegates: typically a customPropertyAccessor
specific to a use case (e.g.boolean
StandardEvaluationContext.removePropertyAccessor
(PropertyAccessor accessor) Method parameters in org.springframework.expression.spel.support with type arguments of type PropertyAccessorModifier and TypeMethodDescriptionvoid
StandardEvaluationContext.setPropertyAccessors
(List<PropertyAccessor> propertyAccessors) Constructors in org.springframework.expression.spel.support with parameters of type PropertyAccessor