Uses of Class
org.springframework.web.bind.ServletRequestDataBinder

Packages that use ServletRequestDataBinder
org.springframework.web.servlet.mvc Standard controller implementations for the servlet MVC framework that comes with Spring. 
org.springframework.web.servlet.mvc.annotation Support package for annotation-based Servlet MVC controllers. 
org.springframework.web.servlet.mvc.multiaction Package allowing MVC Controller implementations to handle requests at method rather than class level. 
org.springframework.web.servlet.mvc.throwaway Throwaway command controllers are a WebWork/Maverick-style alternative to Spring's default Servlet/Struts-style Controller approach. 
 

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

Methods in org.springframework.web.servlet.mvc that return ServletRequestDataBinder
protected  ServletRequestDataBinder BaseCommandController.bindAndValidate(HttpServletRequest request, Object command)
          Bind the parameters of the given request to the given command object.
protected  ServletRequestDataBinder BaseCommandController.createBinder(HttpServletRequest request, Object command)
          Create a new binder instance for the given command and request.
 

Methods in org.springframework.web.servlet.mvc with parameters of type ServletRequestDataBinder
protected  void BaseCommandController.initBinder(HttpServletRequest request, ServletRequestDataBinder binder)
          Initialize the given binder instance, for example with custom editors.
protected  void BaseCommandController.prepareBinder(ServletRequestDataBinder binder)
          Prepare the given binder, applying the specified MessageCodesResolver, BindingErrorProcessor and PropertyEditorRegistrars (if any).
 

Uses of ServletRequestDataBinder in org.springframework.web.servlet.mvc.annotation
 

Methods in org.springframework.web.servlet.mvc.annotation that return ServletRequestDataBinder
protected  ServletRequestDataBinder AnnotationMethodHandlerAdapter.createBinder(HttpServletRequest request, Object target, String objectName)
          Template method for creating a new ServletRequestDataBinder instance.
 

Uses of ServletRequestDataBinder in org.springframework.web.servlet.mvc.multiaction
 

Methods in org.springframework.web.servlet.mvc.multiaction that return ServletRequestDataBinder
protected  ServletRequestDataBinder MultiActionController.createBinder(HttpServletRequest request, Object command)
          Create a new binder instance for the given command and request.
 

Methods in org.springframework.web.servlet.mvc.multiaction with parameters of type ServletRequestDataBinder
protected  void MultiActionController.initBinder(HttpServletRequest request, ServletRequestDataBinder binder)
          Initialize the given binder instance, for example with custom editors.
protected  void MultiActionController.initBinder(ServletRequest request, ServletRequestDataBinder binder)
          Deprecated. as of Spring 2.0: use initBinder(HttpServletRequest, ServletRequestDataBinder) instead
 

Uses of ServletRequestDataBinder in org.springframework.web.servlet.mvc.throwaway
 

Methods in org.springframework.web.servlet.mvc.throwaway that return ServletRequestDataBinder
protected  ServletRequestDataBinder ThrowawayControllerHandlerAdapter.createBinder(HttpServletRequest request, ThrowawayController command)
          Deprecated. Create a new binder instance for the given command and request.
 

Methods in org.springframework.web.servlet.mvc.throwaway with parameters of type ServletRequestDataBinder
protected  void ThrowawayControllerHandlerAdapter.initBinder(HttpServletRequest request, ServletRequestDataBinder binder)
          Deprecated. Initialize the given binder instance, for example with custom editors.
 



Copyright © 2002-2008 The Spring Framework.