Uses of Class
org.springframework.web.bind.WebDataBinder
Package
Description
Provides web-specific data binding functionality.
Support classes for web data binding.
Support classes for annotation-based handler method processing.
MVC infrastructure for annotation-based handler method processing, building on the
org.springframework.web.method.annotation
package.-
Uses of WebDataBinder in org.springframework.web.bind
Modifier and TypeClassDescriptionclass
SpecialDataBinder
to perform data binding from servlet request parameters to JavaBeans, including support for multipart files. -
Uses of WebDataBinder in org.springframework.web.bind.support
Modifier and TypeClassDescriptionclass
SpecializedDataBinder
to perform data binding from URL query parameters or form data in the request data to Java objects.class
SpecialDataBinder
to perform data binding from web request parameters to JavaBeans, including support for multipart files.Modifier and TypeMethodDescriptionfinal WebDataBinder
DefaultDataBinderFactory.createBinder
(NativeWebRequest webRequest, Object target, String objectName) Create a newWebDataBinder
for the given target object and initialize it through aWebBindingInitializer
.WebDataBinderFactory.createBinder
(NativeWebRequest webRequest, Object target, String objectName) Create aWebDataBinder
for the given object.protected WebDataBinder
DefaultDataBinderFactory.createBinderInstance
(Object target, String objectName, NativeWebRequest webRequest) Extension point to create the WebDataBinder instance.Modifier and TypeMethodDescriptionvoid
ConfigurableWebBindingInitializer.initBinder
(WebDataBinder binder) protected void
DefaultDataBinderFactory.initBinder
(WebDataBinder dataBinder, NativeWebRequest webRequest) Extension point to further initialize the created data binder instance (e.g.void
WebBindingInitializer.initBinder
(WebDataBinder binder) Initialize the given DataBinder. -
Uses of WebDataBinder in org.springframework.web.method.annotation
Modifier and TypeMethodDescriptionprotected void
ModelAttributeMethodProcessor.bindRequestParameters
(WebDataBinder binder, NativeWebRequest request) Extension point to bind the request to the target object.void
InitBinderDataBinderFactory.initBinder
(WebDataBinder dataBinder, NativeWebRequest request) Initialize a WebDataBinder with@InitBinder
methods.protected boolean
InitBinderDataBinderFactory.isBinderMethodApplicable
(HandlerMethod initBinderMethod, WebDataBinder dataBinder) Determine whether the given@InitBinder
method should be used to initialize the givenWebDataBinder
instance.protected boolean
ModelAttributeMethodProcessor.isBindExceptionRequired
(WebDataBinder binder, MethodParameter parameter) Whether to raise a fatal bind exception on validation errors.protected void
ModelAttributeMethodProcessor.validateIfApplicable
(WebDataBinder binder, MethodParameter parameter) Validate the model attribute if applicable.protected void
ModelAttributeMethodProcessor.validateValueIfApplicable
(WebDataBinder binder, MethodParameter parameter, Class<?> targetType, String fieldName, Object value) Validate the specified candidate value if applicable. -
Uses of WebDataBinder in org.springframework.web.servlet.mvc.method.annotation
Modifier and TypeClassDescriptionclass
Subclass ofServletRequestDataBinder
that adds URI template variables to the values used for data binding.Modifier and TypeMethodDescriptionprotected void
ServletModelAttributeMethodProcessor.bindRequestParameters
(WebDataBinder binder, NativeWebRequest request) This implementation downcastsWebDataBinder
toServletRequestDataBinder
before binding.protected boolean
AbstractMessageConverterMethodArgumentResolver.isBindExceptionRequired
(WebDataBinder binder, MethodParameter parameter) Whether to raise a fatal bind exception on validation errors.protected void
AbstractMessageConverterMethodArgumentResolver.validateIfApplicable
(WebDataBinder binder, MethodParameter parameter) Validate the binding target if applicable.