Class ServletRequestDataBinderFactory
java.lang.Object
org.springframework.web.bind.support.DefaultDataBinderFactory
org.springframework.web.method.annotation.InitBinderDataBinderFactory
org.springframework.web.servlet.mvc.method.annotation.ServletRequestDataBinderFactory
- All Implemented Interfaces:
WebDataBinderFactory
Creates a
ServletRequestDataBinder
.- Since:
- 3.1
- Author:
- Rossen Stoyanchev
-
Constructor Summary
ConstructorDescriptionServletRequestDataBinderFactory
(List<InvocableHandlerMethod> binderMethods, WebBindingInitializer initializer) Create a new instance. -
Method Summary
Modifier and TypeMethodDescriptionprotected ServletRequestDataBinder
createBinderInstance
(Object target, String objectName, NativeWebRequest request) Returns an instance ofExtendedServletRequestDataBinder
.Methods inherited from class org.springframework.web.method.annotation.InitBinderDataBinderFactory
initBinder, isBinderMethodApplicable
Methods inherited from class org.springframework.web.bind.support.DefaultDataBinderFactory
createBinder, createBinder, setMethodValidationApplicable
-
Constructor Details
-
ServletRequestDataBinderFactory
public ServletRequestDataBinderFactory(@Nullable List<InvocableHandlerMethod> binderMethods, @Nullable WebBindingInitializer initializer) Create a new instance.- Parameters:
binderMethods
- one or more@InitBinder
methodsinitializer
- provides global data binder initialization
-
-
Method Details
-
createBinderInstance
protected ServletRequestDataBinder createBinderInstance(@Nullable Object target, String objectName, NativeWebRequest request) throws Exception Returns an instance ofExtendedServletRequestDataBinder
.- Overrides:
createBinderInstance
in classDefaultDataBinderFactory
- Parameters:
target
- the binding target ornull
for type conversion onlyobjectName
- the binding target object namerequest
- the current request- Throws:
Exception
- in case of invalid state or arguments
-