Package org.springframework.beans
@NonNullApi
@NonNullFields
package org.springframework.beans
This package contains interfaces and classes for manipulating Java beans.
It is used by most other Spring packages.
A BeanWrapper object may be used to set and get bean properties, singly or in bulk.
The classes in this package are discussed in Chapter 11 of Expert One-On-One J2EE Design and Development by Rod Johnson (Wrox, 2002).
-
ClassDescriptionA basic
ConfigurablePropertyAccessor
that provides the necessary infrastructure for all typical use cases.A handler for a specific property.Holder class used to store property tokens.Abstract implementation of thePropertyAccessor
interface.Strategy interface for creatingBeanInfo
instances for Spring beans.Exception thrown when instantiation of a bean failed.Holder for a key-value style attribute that is part of a bean definition.Extension ofAttributeAccessorSupport
, holding attributes asBeanMetadataAttribute
objects in order to keep track of the definition source.Interface to be implemented by bean metadata elements that carry a configuration source object.Abstract superclass for all exceptions thrown in the beans package and subpackages.Static convenience methods for JavaBeans: for instantiating beans, checking bean property types, copying bean properties, etc.The central interface of Spring's low-level JavaBeans infrastructure.DefaultBeanWrapper
implementation that should be sufficient for all typical use cases.Internal class that caches JavaBeansPropertyDescriptor
information for a Java class.Interface that encapsulates configuration methods for a PropertyAccessor.Exception thrown when no suitable editor or converter can be found for a bean property.ConfigurablePropertyAccessor
implementation that directly accesses instance fields.Extension ofStandardBeanInfoFactory
that supports "non-standard" JavaBeans setter methods through introspection by Spring's (package-visible)ExtendedBeanInfo
implementation.Thrown on an unrecoverable problem encountered in the beans packages or sub-packages, for example, bad class or field.Exception thrown when referring to an invalid bean property.Interface representing an object whose value set can be merged with that of a parent object.Thrown when a bean property getter or setter method throws an exception, analogous to an InvocationTargetException.The default implementation of thePropertyValues
interface.Exception thrown on an attempt to get the value of a property that isn't readable, because there's no getter method.Exception thrown on an attempt to set the value of a property that is not writable (typically because there is no setter method).Exception thrown when navigation of a valid nested property path encounters a NullPointerException.Superclass for exceptions related to a property access, such as type mismatch or invocation target exception.Common interface for classes that can access named properties (such as bean properties of an object or fields in an object).Simple factory facade for obtainingPropertyAccessor
instances, in particular forBeanWrapper
instances.Utility methods for classes that perform bean property access according to thePropertyAccessor
interface.Combined exception, composed of individual PropertyAccessException instances.Interface for strategies that register customproperty editors
with aproperty editor registry
.Encapsulates methods for registering JavaBeansPropertyEditors
.Base implementation of thePropertyEditorRegistry
interface.Helper class for calculating property matches, according to a configurable distance.Object to hold information and value for an individual bean property.Holder containing one or morePropertyValue
objects, typically comprising one update for a specific target bean.Editor
for aPropertyValues
object.Simple implementation of theTypeConverter
interface that does not operate on a specific target object.BeanInfoFactory
implementation that performs standardIntrospector
inspection.Interface that defines type conversion methods.Base implementation of theTypeConverter
interface, using a package-private delegate.Exception thrown on a type mismatch when trying to set a bean property.