Uses of Class
org.springframework.expression.AccessException
Packages that use 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.expressionMethods in org.springframework.context.expression that throw AccessExceptionModifier and TypeMethodDescriptionbooleanBeanExpressionContextAccessor.canRead(EvaluationContext context, Object target, String name) booleanBeanFactoryAccessor.canRead(EvaluationContext context, Object target, String name) booleanEnvironmentAccessor.canRead(EvaluationContext context, Object target, String name) booleanMapAccessor.canRead(EvaluationContext context, Object target, String name) booleanBeanExpressionContextAccessor.canWrite(EvaluationContext context, Object target, String name) booleanBeanFactoryAccessor.canWrite(EvaluationContext context, Object target, String name) booleanEnvironmentAccessor.canWrite(EvaluationContext context, Object target, String name) Read-only: returnsfalse.booleanMapAccessor.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) voidBeanExpressionContextAccessor.write(EvaluationContext context, Object target, String name, Object newValue) voidBeanFactoryAccessor.write(EvaluationContext context, Object target, String name, Object newValue) voidEnvironmentAccessor.write(EvaluationContext context, Object target, String name, Object newValue) voidMapAccessor.write(EvaluationContext context, Object target, String name, Object newValue) 
- 
Uses of AccessException in org.springframework.expressionMethods in org.springframework.expression that throw AccessExceptionModifier and TypeMethodDescriptionbooleanIndexAccessor.canRead(EvaluationContext context, Object target, Object index) Determine if this index accessor is able to read a specified index on a specified target object.booleanPropertyAccessor.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.booleanIndexAccessor.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.booleanPropertyAccessor.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.voidIndexAccessor.write(EvaluationContext context, Object target, Object index, Object newValue) Write to an index on a specified target object.voidPropertyAccessor.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.supportMethods in org.springframework.expression.spel.support that throw AccessExceptionModifier and TypeMethodDescriptionbooleanReflectivePropertyAccessor.canRead(EvaluationContext context, Object target, String name) booleanReflectivePropertyAccessor.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.voidReflectivePropertyAccessor.write(EvaluationContext context, Object target, String name, Object newValue)