Class PropertyAccessorFactory

java.lang.Object
org.springframework.beans.PropertyAccessorFactory

public final class PropertyAccessorFactory extends Object
Simple factory facade for obtaining PropertyAccessor instances, in particular for BeanWrapper instances. Conceals the actual target implementation classes and their extended public signature.
Since:
2.5.2
Author:
Juergen Hoeller
  • Method Details

    • forBeanPropertyAccess

      public static BeanWrapper forBeanPropertyAccess(Object target)
      Obtain a BeanWrapper for the given target object, accessing properties in JavaBeans style.
      Parameters:
      target - the target object to wrap
      Returns:
      the property accessor
      See Also:
    • forDirectFieldAccess

      public static ConfigurablePropertyAccessor forDirectFieldAccess(Object target)
      Obtain a PropertyAccessor for the given target object, accessing properties in direct field style.
      Parameters:
      target - the target object to wrap
      Returns:
      the property accessor
      See Also: