Class InitBinderDataBinderFactory
java.lang.Object
org.springframework.web.bind.support.DefaultDataBinderFactory
org.springframework.web.method.annotation.InitBinderDataBinderFactory
- All Implemented Interfaces:
WebDataBinderFactory
- Direct Known Subclasses:
ServletRequestDataBinderFactory
Adds initialization to a WebDataBinder via
@InitBinder
methods.- Since:
- 3.1
- Author:
- Rossen Stoyanchev
-
Constructor Summary
ConstructorDescriptionInitBinderDataBinderFactory
(List<InvocableHandlerMethod> binderMethods, WebBindingInitializer initializer) Create a new InitBinderDataBinderFactory instance. -
Method Summary
Modifier and TypeMethodDescriptionvoid
initBinder
(WebDataBinder dataBinder, NativeWebRequest request) Initialize a WebDataBinder with@InitBinder
methods.protected boolean
isBinderMethodApplicable
(HandlerMethod initBinderMethod, WebDataBinder dataBinder) Determine whether the given@InitBinder
method should be used to initialize the givenWebDataBinder
instance.Methods inherited from class org.springframework.web.bind.support.DefaultDataBinderFactory
createBinder, createBinderInstance
-
Constructor Details
-
InitBinderDataBinderFactory
public InitBinderDataBinderFactory(@Nullable List<InvocableHandlerMethod> binderMethods, @Nullable WebBindingInitializer initializer) Create a new InitBinderDataBinderFactory instance.- Parameters:
binderMethods
-@InitBinder
methodsinitializer
- for global data binder initialization
-
-
Method Details
-
initBinder
Initialize a WebDataBinder with@InitBinder
methods.If the
@InitBinder
annotation specifies attributes names, it is invoked only if the names include the target object name.- Overrides:
initBinder
in classDefaultDataBinderFactory
- Parameters:
dataBinder
- the data binder instance to customizerequest
- the current request- Throws:
Exception
- if one of the invoked @InitBinder
methods fails- See Also:
-
isBinderMethodApplicable
protected boolean isBinderMethodApplicable(HandlerMethod initBinderMethod, WebDataBinder dataBinder) Determine whether the given@InitBinder
method should be used to initialize the givenWebDataBinder
instance. By default we check the specified attribute names in the annotation value, if any.
-