Uses of Interface
org.springframework.beans.BeanWrapper
Package
Description
This package contains interfaces and classes for manipulating Java beans.
Classes supporting the
org.springframework.beans.factory
package.Provides the core JDBC framework, based on JdbcTemplate
and its associated callback interfaces and helper objects.
This package provides JCA-based endpoint management for JMS message listeners.
Provides data binding and validation functionality,
for usage in business and/or UI layers.
Provides generic filter base classes allowing for bean-style configuration.
Provides servlets that integrate with the application context
infrastructure, and the core interfaces and classes for the
Spring web MVC framework.
-
Uses of BeanWrapper in org.springframework.beans
Modifier and TypeClassDescriptionclass
DefaultBeanWrapper
implementation that should be sufficient for all typical use cases.Modifier and TypeMethodDescriptionstatic BeanWrapper
PropertyAccessorFactory.forBeanPropertyAccess
(Object target) Obtain a BeanWrapper for the given target object, accessing properties in JavaBeans style. -
Uses of BeanWrapper in org.springframework.beans.factory.support
Modifier and TypeMethodDescriptionprotected BeanWrapper
AbstractAutowireCapableBeanFactory.autowireConstructor
(String beanName, RootBeanDefinition mbd, Constructor<?>[] ctors, Object[] explicitArgs) "autowire constructor" (with constructor arguments by type) behavior.protected BeanWrapper
AbstractAutowireCapableBeanFactory.createBeanInstance
(String beanName, RootBeanDefinition mbd, Object[] args) Create a new instance for the specified bean, using an appropriate instantiation strategy: factory method, constructor autowiring, or simple instantiation.protected BeanWrapper
AbstractAutowireCapableBeanFactory.instantiateBean
(String beanName, RootBeanDefinition mbd) Instantiate the given bean using its default constructor.protected BeanWrapper
AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod
(String beanName, RootBeanDefinition mbd, Object[] explicitArgs) Instantiate the bean using a named factory method.Modifier and TypeMethodDescriptionprotected void
AbstractAutowireCapableBeanFactory.applyPropertyValues
(String beanName, BeanDefinition mbd, BeanWrapper bw, PropertyValues pvs) Apply the given property values, resolving any runtime references to other beans in this bean factory.protected void
AbstractAutowireCapableBeanFactory.autowireByName
(String beanName, AbstractBeanDefinition mbd, BeanWrapper bw, MutablePropertyValues pvs) Fill in any missing property values with references to other beans in this factory if autowire is set to "byName".protected void
AbstractAutowireCapableBeanFactory.autowireByType
(String beanName, AbstractBeanDefinition mbd, BeanWrapper bw, MutablePropertyValues pvs) Abstract method defining "autowire by type" (bean properties by type) behavior.protected PropertyDescriptor[]
AbstractAutowireCapableBeanFactory.filterPropertyDescriptorsForDependencyCheck
(BeanWrapper bw) Extract a filtered set of PropertyDescriptors from the given BeanWrapper, excluding ignored dependency types or properties defined on ignored dependency interfaces.protected PropertyDescriptor[]
AbstractAutowireCapableBeanFactory.filterPropertyDescriptorsForDependencyCheck
(BeanWrapper bw, boolean cache) Extract a filtered set of PropertyDescriptors from the given BeanWrapper, excluding ignored dependency types or properties defined on ignored dependency interfaces.protected void
AbstractBeanFactory.initBeanWrapper
(BeanWrapper bw) Initialize the given BeanWrapper with the custom editors registered with this factory.protected void
AbstractAutowireCapableBeanFactory.populateBean
(String beanName, RootBeanDefinition mbd, BeanWrapper bw) Populate the bean instance in the given BeanWrapper with the property values from the bean definition.protected String[]
AbstractAutowireCapableBeanFactory.unsatisfiedNonSimpleProperties
(AbstractBeanDefinition mbd, BeanWrapper bw) Return an array of non-simple bean properties that are unsatisfied. -
Uses of BeanWrapper in org.springframework.jdbc.core
Modifier and TypeMethodDescriptionprotected void
BeanPropertyRowMapper.initBeanWrapper
(BeanWrapper bw) Initialize the given BeanWrapper to be used for row mapping. -
Uses of BeanWrapper in org.springframework.jms.listener.endpoint
Modifier and TypeMethodDescriptionprotected void
DefaultJmsActivationSpecFactory.applyAcknowledgeMode
(BeanWrapper bw, int ackMode) This implementation mapsSESSION_TRANSACTED
onto an ActivationSpec property named "useRAManagedTransaction", if available (following ActiveMQ's naming conventions).protected void
StandardJmsActivationSpecFactory.applyAcknowledgeMode
(BeanWrapper bw, int ackMode) Apply the specified acknowledge mode to the ActivationSpec object.protected void
DefaultJmsActivationSpecFactory.populateActivationSpecProperties
(BeanWrapper bw, JmsActivationSpecConfig config) This implementation supports Spring's extended "maxConcurrency" and "prefetchSize" settings through detecting corresponding ActivationSpec properties: "maxSessions"/"maxNumberOfWorks" and "maxMessagesPerSessions"/"maxMessages", respectively (following ActiveMQ's and JORAM's naming conventions).protected void
StandardJmsActivationSpecFactory.populateActivationSpecProperties
(BeanWrapper bw, JmsActivationSpecConfig config) Populate the given ApplicationSpec object with the settings defined in the given configuration object. -
Uses of BeanWrapper in org.springframework.validation
Modifier and TypeMethodDescriptionprotected BeanWrapper
BeanPropertyBindingResult.createBeanWrapper()
Create a newBeanWrapper
for the underlying target object. -
Uses of BeanWrapper in org.springframework.web.filter
Modifier and TypeMethodDescriptionprotected void
GenericFilterBean.initBeanWrapper
(BeanWrapper bw) Initialize the BeanWrapper for this GenericFilterBean, possibly with custom editors. -
Uses of BeanWrapper in org.springframework.web.servlet
Modifier and TypeMethodDescriptionprotected void
HttpServletBean.initBeanWrapper
(BeanWrapper bw) Initialize the BeanWrapper for this HttpServletBean, possibly with custom editors.