org.springframework.web.bind
Class ServletRequestDataBinder

org.springframework.validation.DataBinder
  |
  +--org.springframework.web.bind.ServletRequestDataBinder

public class ServletRequestDataBinder
extends DataBinder

Use this class to perform manual data binding from servlet request parameters to JavaBeans, including support for multipart files.

Author:
Rod Johnson, Juergen Hoeller

Fields inherited from class org.springframework.validation.DataBinder
MISSING_FIELD_ERROR_CODE

Constructor Summary
ServletRequestDataBinder(Object target, String name)
          Create a new DataBinder instance.

Method Summary
 voidbind(ServletRequest request)
          Bind the parameters of the given request to this binder's target, also binding multipart files in case of a multipart request.
 voidcloseNoCatch()
          Treats errors as fatal.

Methods inherited from class org.springframework.validation.DataBinder
bind, close, getErrors, registerCustomEditor, registerCustomEditor, setRequiredFields

Constructor Detail

ServletRequestDataBinder

public ServletRequestDataBinder(Object target, String name)
Create a new DataBinder instance.
Parameters:
target - target object to bind onto
name - name of the target object
Method Detail

bind

public void bind(ServletRequest request)
Bind the parameters of the given request to this binder's target, also binding multipart files in case of a multipart request.

This call can create field errors, representing basic binding errors like a required field (code "required"), or type mismatch between value and bean property (code "typeMismatch").

Multipart files are bound via their parameter name, just like normal HTTP parameters: i.e. "uploadedFile" to an "uploadedFile" bean property, invoking a "setUploadedFile" setter method.

The type of the target property for a multipart file can be MultipartFile, byte[], or String. The latter two receive the contents of the uploaded file; all metadata like original file name, content type, etc are lost in those cases.

Parameters:
request - request with parameters to bind (can be multipart)
See Also:
MultipartHttpServletRequest, MultipartFile

closeNoCatch

public void closeNoCatch()
throws ServletRequestBindingException
Treats errors as fatal. Use this method only if it's an error if the input isn't valid. This might be appropriate if all input is from dropdowns, for example.
Throws:
ServletRequestBindingException - subclass of ServletException on any binding problem