|
The Spring Framework | |||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use BeanWrapper | |
---|---|
org.springframework.beans | This package contains interfaces and classes for manipulating Java beans. |
org.springframework.beans.factory.support | Classes supporting the org.springframework.beans.factory package. |
org.springframework.validation | Provides data binding and validation functionality, for usage in business and/or UI layers. |
org.springframework.web.filter | Provides generic filter base classes allowing for bean-style configuration. |
org.springframework.web.portlet | Provides JSR-168 portlets that integrate with the application context infrastructure, and the core interfaces and classes for the Portlet variant of Spring's web MVC framework. |
org.springframework.web.servlet | 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 |
---|
Classes in org.springframework.beans that implement BeanWrapper | |
---|---|
class |
BeanWrapperImpl
Default BeanWrapper implementation that should be sufficient
for all typical use cases. |
Uses of BeanWrapper in org.springframework.beans.factory.support |
---|
Methods in org.springframework.beans.factory.support that return BeanWrapper | |
---|---|
protected BeanWrapper |
AbstractAutowireCapableBeanFactory.autowireConstructor(String beanName,
RootBeanDefinition mbd,
Constructor ctor)
"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. |
Methods in org.springframework.beans.factory.support with parameters of type BeanWrapper | |
---|---|
protected void |
AbstractAutowireCapableBeanFactory.applyPropertyValues(String beanName,
RootBeanDefinition 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,
RootBeanDefinition 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,
RootBeanDefinition 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 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(RootBeanDefinition mbd,
BeanWrapper bw)
Return an array of non-simple bean properties that are unsatisfied. |
Uses of BeanWrapper in org.springframework.validation |
---|
Methods in org.springframework.validation that return BeanWrapper | |
---|---|
protected BeanWrapper |
BeanPropertyBindingResult.createBeanWrapper()
Create a new BeanWrapper for the underlying target object. |
Uses of BeanWrapper in org.springframework.web.filter |
---|
Methods in org.springframework.web.filter with parameters of type BeanWrapper | |
---|---|
protected void |
GenericFilterBean.initBeanWrapper(BeanWrapper bw)
Initialize the BeanWrapper for this GenericFilterBean, possibly with custom editors. |
Uses of BeanWrapper in org.springframework.web.portlet |
---|
Methods in org.springframework.web.portlet with parameters of type BeanWrapper | |
---|---|
protected void |
GenericPortletBean.initBeanWrapper(BeanWrapper bw)
Initialize the BeanWrapper for this GenericPortletBean, possibly with custom editors. |
Uses of BeanWrapper in org.springframework.web.servlet |
---|
Methods in org.springframework.web.servlet with parameters of type BeanWrapper | |
---|---|
protected void |
HttpServletBean.initBeanWrapper(BeanWrapper bw)
Initialize the BeanWrapper for this HttpServletBean, possibly with custom editors. |
|
The Spring Framework | |||||||||
PREV NEXT | FRAMES NO FRAMES |