| java.lang.Object | |
| ↳ | org.springframework.context.expression.BeanFactoryAccessor |
EL property accessor that knows how to traverse the beans of a
Spring BeanFactory.
| Public Constructors | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Called to determine if a resolver instance is able to access a specified property on a specified target object.
| |||||||||||
Called to determine if a resolver instance is able to write to a specified property on a specified target object.
| |||||||||||
Return an array of classes for which this resolver should be called.
| |||||||||||
Called to read a property from a specified target object
| |||||||||||
Called to write to a property on a specified target object.
| |||||||||||
|
[Expand]
Inherited Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.lang.Object
| |||||||||||
From interface
org.springframework.expression.PropertyAccessor
| |||||||||||
Called to determine if a resolver instance is able to access a specified property on a specified target object.
| context | the evaluation context in which the access is being attempted |
|---|---|
| target | the target object upon which the property is being accessed |
| name | the name of the property being accessed |
| AccessException |
|---|
Called to determine if a resolver instance is able to write to a specified property on a specified target object.
| context | the evaluation context in which the access is being attempted |
|---|---|
| target | the target object upon which the property is being accessed |
| name | the name of the property being accessed |
| AccessException |
|---|
Return an array of classes for which this resolver should be called. Returning null indicates this is a general resolver that can be called in an attempt to resolve a property on any type.
Called to read a property from a specified target object
| context | the evaluation context in which the access is being attempted |
|---|---|
| target | the target object upon which the property is being accessed |
| name | the name of the property being accessed |
| AccessException |
|---|
Called to write to a property on a specified target object. Should only succeed if canWrite() also returns true.
| context | the evaluation context in which the access is being attempted |
|---|---|
| target | the target object upon which the property is being accessed |
| name | the name of the property being accessed |
| newValue | the new value for the property |
| AccessException |
|---|