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 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
SpELPropertyAccessor
that knows how to access the beans and contextual objects of a SpringBeanExpressionContext
.class
SpELPropertyAccessor
that knows how to access the beans of a SpringBeanFactory
.class
Read-only SpELPropertyAccessor
that knows how to retrieve properties of a SpringEnvironment
instance.class
SpELPropertyAccessor
that knows how to access 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 TypeMethodDescriptiondefault List<PropertyAccessor>
EvaluationContext.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 compilablePropertyAccessor
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.support
Classes in org.springframework.expression.spel.support that implement PropertyAccessorModifier and TypeClassDescriptionfinal class
AnPropertyAccessor
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.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 — for example, for attribute resolution in a custom data structure — potentially combined with aDataBindingPropertyAccessor
if property dereferences are needed as well.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)