Class DefaultDataBinderFactory
java.lang.Object
org.springframework.web.bind.support.DefaultDataBinderFactory
- All Implemented Interfaces:
- WebDataBinderFactory
- Direct Known Subclasses:
- InitBinderDataBinderFactory
Create a 
WebRequestDataBinder instance and initialize it with a
 WebBindingInitializer.- Since:
- 3.1
- Author:
- Rossen Stoyanchev
- 
Constructor SummaryConstructorsConstructorDescriptionDefaultDataBinderFactory(WebBindingInitializer initializer) Create a newDefaultDataBinderFactoryinstance.
- 
Method SummaryModifier and TypeMethodDescriptionfinal WebDataBindercreateBinder(NativeWebRequest webRequest, Object target, String objectName) Create a newWebDataBinderfor the given target object and initialize it through aWebBindingInitializer.protected WebDataBindercreateBinderInstance(Object target, String objectName, NativeWebRequest webRequest) Extension point to create the WebDataBinder instance.protected voidinitBinder(WebDataBinder dataBinder, NativeWebRequest webRequest) Extension point to further initialize the created data binder instance (e.g.
- 
Constructor Details- 
DefaultDataBinderFactoryCreate a newDefaultDataBinderFactoryinstance.- Parameters:
- initializer- for global data binder initialization (or- nullif none)
 
 
- 
- 
Method Details- 
createBinderpublic final WebDataBinder createBinder(NativeWebRequest webRequest, @Nullable Object target, String objectName) throws Exception Create a newWebDataBinderfor the given target object and initialize it through aWebBindingInitializer.- Specified by:
- createBinderin interface- WebDataBinderFactory
- Parameters:
- webRequest- the current request
- target- the object to create a data binder for, or- nullif creating a binder for a simple type
- objectName- the name of the target object
- Returns:
- the created WebDataBinderinstance, never null
- Throws:
- Exception- in case of invalid state or arguments
 
- 
createBinderInstanceprotected WebDataBinder createBinderInstance(@Nullable Object target, String objectName, NativeWebRequest webRequest) throws Exception Extension point to create the WebDataBinder instance. By default this isWebRequestDataBinder.- Parameters:
- target- the binding target or- nullfor type conversion only
- objectName- the binding target object name
- webRequest- the current request
- Throws:
- Exception- in case of invalid state or arguments
 
- 
initBinderExtension point to further initialize the created data binder instance (e.g. with@InitBindermethods) after "global" initialization viaWebBindingInitializer.- Parameters:
- dataBinder- the data binder instance to customize
- webRequest- the current request
- Throws:
- Exception- if initialization fails
 
 
-