Uses of Class
org.springframework.validation.BindException

Packages that use BindException
org.springframework.validation Provides data binding and validation functionality, for usage in business and/or UI layers. 
org.springframework.web.bind Provides web-specific data binding functionality, including a utility class for easy invocation of binding and validation. 
org.springframework.web.servlet.mvc Standard controller implementations for the MVC framework that comes with Spring. 
 

Uses of BindException in org.springframework.validation
 

Methods in org.springframework.validation that return BindException
protected  BindException DataBinder.createErrors(java.lang.Object target, java.lang.String objectName)
          Create a new Errors instance for this data binder.
 BindException DataBinder.getErrors()
          Return the Errors instance for this data binder.
 

Methods in org.springframework.validation that throw BindException
 java.util.Map DataBinder.close()
          Close this DataBinder, which may result in throwing a BindException if it encountered any errors
 

Uses of BindException in org.springframework.web.bind
 

Methods in org.springframework.web.bind that return BindException
static BindException BindUtils.bind(javax.servlet.ServletRequest request, java.lang.Object object, java.lang.String objectName)
          Bind the parameters from the given request to the given object.
static BindException BindUtils.bind(javax.servlet.ServletRequest request, java.lang.Object object, java.lang.String objectName, BindInitializer initializer)
          Bind the parameters from the given request to the given object, allowing for optional custom editors set in an bind initializer.
static BindException BindUtils.bindAndValidate(javax.servlet.ServletRequest request, java.lang.Object object, java.lang.String objectName, Validator validator)
          Bind the parameters from the given request to the given object, invoking the given validator.
static BindException BindUtils.bindAndValidate(javax.servlet.ServletRequest request, java.lang.Object object, java.lang.String objectName, Validator validator, BindInitializer initializer)
          Bind the parameters from the given request to the given object, invoking the given validator, and allowing for optional custom editors set in an bind initializer.
 

Uses of BindException in org.springframework.web.servlet.mvc
 

Methods in org.springframework.web.servlet.mvc with parameters of type BindException
protected  ModelAndView SimpleFormController.showForm(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, BindException errors)
          This implementation shows the configured form view.
protected  ModelAndView SimpleFormController.processFormSubmission(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, java.lang.Object command, BindException errors)
          This implementation calls showForm in case of errors, and delegates to onSubmit's full version else.
protected  ModelAndView SimpleFormController.onSubmit(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, java.lang.Object command, BindException errors)
          Submit callback with all parameters.
protected  void BaseCommandController.onBindAndValidate(javax.servlet.http.HttpServletRequest request, java.lang.Object command, BindException errors)
          Callback for custom post-processing in terms of binding and validation.
protected  void AbstractWizardFormController.onBindAndValidate(javax.servlet.http.HttpServletRequest request, java.lang.Object command, BindException errors)
          Call page-specific onBindAndValidate method.
protected  void AbstractWizardFormController.onBindAndValidate(javax.servlet.http.HttpServletRequest request, java.lang.Object command, BindException errors, int page)
          Callback for custom post-processing in terms of binding and validation.
protected  ModelAndView AbstractWizardFormController.showForm(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, BindException errors)
          Show first page as form view.
protected  ModelAndView AbstractWizardFormController.showPage(javax.servlet.http.HttpServletRequest request, BindException errors, int page)
          Prepare the form model and view, including reference and error data, for the given page.
protected  ModelAndView AbstractWizardFormController.processFormSubmission(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, java.lang.Object command, BindException errors)
          Apply wizard workflow: finish, cancel, page change.
protected abstract  ModelAndView AbstractWizardFormController.processFinish(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, java.lang.Object command, BindException errors)
          Template method for processing the final action of this wizard.
protected abstract  ModelAndView AbstractWizardFormController.processCancel(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, java.lang.Object command, BindException errors)
          Template method for processing the cancel action of this wizard.
protected abstract  ModelAndView AbstractFormController.showForm(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, BindException errors)
          Prepare the form model and view, including reference and error data.
protected  ModelAndView AbstractFormController.showForm(javax.servlet.http.HttpServletRequest request, BindException errors, java.lang.String viewName)
          Prepare model and view for the given form, including reference and errors.
protected  ModelAndView AbstractFormController.showForm(javax.servlet.http.HttpServletRequest request, BindException errors, java.lang.String viewName, java.util.Map controlModel)
          Prepare model and view for the given form, including reference and errors, adding a controller-specific control model.
protected abstract  ModelAndView AbstractFormController.processFormSubmission(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, java.lang.Object command, BindException errors)
          Process form submission request.
protected abstract  ModelAndView AbstractCommandController.handle(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, java.lang.Object command, BindException errors)
          Template method for request handling, providing a populated and validated instance of the command class, and an Errors object containing binding and validation errors.
 



Copyright (C) 2003-2004 The Spring Framework Project.