Uses of Class
org.springframework.expression.AccessException
Package
Description
Expression parsing support within a Spring application context.
Core abstractions behind the Spring Expression Language.
SpEL's default implementations for various core abstractions.
-
Uses of AccessException in org.springframework.context.expression
Modifier and TypeMethodDescriptionboolean
BeanExpressionContextAccessor.canRead
(EvaluationContext context, Object target, String name) boolean
BeanFactoryAccessor.canRead
(EvaluationContext context, Object target, String name) boolean
EnvironmentAccessor.canRead
(EvaluationContext context, Object target, String name) boolean
MapAccessor.canRead
(EvaluationContext context, Object target, String name) boolean
BeanExpressionContextAccessor.canWrite
(EvaluationContext context, Object target, String name) boolean
BeanFactoryAccessor.canWrite
(EvaluationContext context, Object target, String name) boolean
EnvironmentAccessor.canWrite
(EvaluationContext context, Object target, String name) Read-only: returnsfalse
.boolean
MapAccessor.canWrite
(EvaluationContext context, Object target, String name) BeanExpressionContextAccessor.read
(EvaluationContext context, Object target, String name) BeanFactoryAccessor.read
(EvaluationContext context, Object target, String name) EnvironmentAccessor.read
(EvaluationContext context, Object target, String name) Access the given target object by resolving the given property name against the given target environment.MapAccessor.read
(EvaluationContext context, Object target, String name) BeanFactoryResolver.resolve
(EvaluationContext context, String beanName) void
BeanExpressionContextAccessor.write
(EvaluationContext context, Object target, String name, Object newValue) void
BeanFactoryAccessor.write
(EvaluationContext context, Object target, String name, Object newValue) void
EnvironmentAccessor.write
(EvaluationContext context, Object target, String name, Object newValue) void
MapAccessor.write
(EvaluationContext context, Object target, String name, Object newValue) -
Uses of AccessException in org.springframework.expression
Modifier and TypeMethodDescriptionboolean
IndexAccessor.canRead
(EvaluationContext context, Object target, Object index) Determine if this index accessor is able to read a specified index on a specified target object.boolean
PropertyAccessor.canRead
(EvaluationContext context, Object target, String name) Called to determine if this property accessor is able to read a specified property on a specified target object.boolean
IndexAccessor.canWrite
(EvaluationContext context, Object target, Object index) Determine if this index accessor is able to write to a specified index on a specified target object.boolean
PropertyAccessor.canWrite
(EvaluationContext context, Object target, String name) Called to determine if this property accessor is able to write to a specified property on a specified target object.ConstructorExecutor.execute
(EvaluationContext context, Object... arguments) Execute a constructor in the specified context using the specified arguments.MethodExecutor.execute
(EvaluationContext context, Object target, Object... arguments) Execute a method in the specified context using the specified arguments.IndexAccessor.read
(EvaluationContext context, Object target, Object index) Read an index from a specified target object.PropertyAccessor.read
(EvaluationContext context, Object target, String name) Called to read a property from a specified target object.BeanResolver.resolve
(EvaluationContext context, String beanName) Look up a bean by the given name and return a corresponding instance for it.ConstructorResolver.resolve
(EvaluationContext context, String typeName, List<TypeDescriptor> argumentTypes) Within the supplied context, resolve a suitable constructor on the supplied type that can handle the specified arguments.MethodResolver.resolve
(EvaluationContext context, Object targetObject, String name, List<TypeDescriptor> argumentTypes) Within the supplied context, resolve a suitable method on the supplied object that can handle the specified arguments.void
IndexAccessor.write
(EvaluationContext context, Object target, Object index, Object newValue) Write to an index on a specified target object.void
PropertyAccessor.write
(EvaluationContext context, Object target, String name, Object newValue) Called to write to a property on a specified target object. -
Uses of AccessException in org.springframework.expression.spel.support
Modifier and TypeMethodDescriptionboolean
ReflectivePropertyAccessor.canRead
(EvaluationContext context, Object target, String name) boolean
ReflectivePropertyAccessor.canWrite
(EvaluationContext context, Object target, String name) ReflectiveConstructorExecutor.execute
(EvaluationContext context, Object... arguments) ReflectiveMethodExecutor.execute
(EvaluationContext context, Object target, Object... arguments) ReflectivePropertyAccessor.read
(EvaluationContext context, Object target, String name) DataBindingMethodResolver.resolve
(EvaluationContext context, Object targetObject, String name, List<TypeDescriptor> argumentTypes) ReflectiveConstructorResolver.resolve
(EvaluationContext context, String typeName, List<TypeDescriptor> argumentTypes) Locate a constructor on the type.ReflectiveMethodResolver.resolve
(EvaluationContext context, Object targetObject, String name, List<TypeDescriptor> argumentTypes) Locate a method on the type.void
ReflectivePropertyAccessor.write
(EvaluationContext context, Object target, String name, Object newValue)