类 DataBindingPropertyAccessor

java.lang.Object
cn.taketoday.expression.spel.support.ReflectivePropertyAccessor
cn.taketoday.expression.spel.support.DataBindingPropertyAccessor
所有已实现的接口:
PropertyAccessor

public final class DataBindingPropertyAccessor extends ReflectivePropertyAccessor
A PropertyAccessor variant for data binding purposes, using reflection to access properties for reading and possibly writing.

A property can be referenced through a public getter method (when being read) or a public setter method (when being written), and also as a public field.

This accessor is explicitly designed for user-declared properties and does not resolve technical properties on java.lang.Object or java.lang.Class. For unrestricted resolution, choose ReflectivePropertyAccessor instead.

从以下版本开始:
4.0
作者:
Juergen Hoeller
另请参阅: