Package | Description |
---|---|
org.springframework.beans.factory.config |
SPI interfaces and configuration-related convenience classes for bean factories.
|
org.springframework.beans.factory.support |
Classes supporting the
org.springframework.beans.factory package. |
org.springframework.beans.support |
Classes supporting the org.springframework.beans package,
such as utility classes for sorting and holding lists of beans.
|
org.springframework.web.bind.support |
Support classes for web data binding.
|
Modifier and Type | Method and Description |
---|---|
void |
ConfigurableBeanFactory.addPropertyEditorRegistrar(PropertyEditorRegistrar registrar)
Add a PropertyEditorRegistrar to be applied to all bean creation processes.
|
void |
CustomEditorConfigurer.setPropertyEditorRegistrars(PropertyEditorRegistrar[] propertyEditorRegistrars)
Specify the
PropertyEditorRegistrars
to apply to beans defined within the current application context. |
Modifier and Type | Method and Description |
---|---|
Set<PropertyEditorRegistrar> |
AbstractBeanFactory.getPropertyEditorRegistrars()
Return the set of PropertyEditorRegistrars.
|
Modifier and Type | Method and Description |
---|---|
void |
AbstractBeanFactory.addPropertyEditorRegistrar(PropertyEditorRegistrar registrar) |
Modifier and Type | Class and Description |
---|---|
class |
ResourceEditorRegistrar
PropertyEditorRegistrar implementation that populates a given
PropertyEditorRegistry
(typically a BeanWrapper used for bean
creation within an ApplicationContext )
with resource editors. |
Modifier and Type | Method and Description |
---|---|
PropertyEditorRegistrar[] |
ConfigurableWebBindingInitializer.getPropertyEditorRegistrars()
Return the PropertyEditorRegistrars to be applied to every DataBinder.
|
Modifier and Type | Method and Description |
---|---|
void |
ConfigurableWebBindingInitializer.setPropertyEditorRegistrar(PropertyEditorRegistrar propertyEditorRegistrar)
Specify a single PropertyEditorRegistrar to be applied to every DataBinder.
|
void |
ConfigurableWebBindingInitializer.setPropertyEditorRegistrars(PropertyEditorRegistrar[] propertyEditorRegistrars)
Specify multiple PropertyEditorRegistrars to be applied to every DataBinder.
|