Uses of Class
org.springframework.web.servlet.ModelAndView

Packages that use ModelAndView
org.springframework.orm.hibernate.support Classes supporting the org.springframework.orm.hibernate package.  
org.springframework.remoting.caucho This package provides remoting classes for Caucho's Hessian and Burlap protocols: a proxy factory for accessing Hessian/Burlap services, and an exporter for making beans available to Hessian/Burlap clients.  
org.springframework.remoting.httpinvoker Remoting classes for transparent Java-to-Java remoting via HTTP invokers.  
org.springframework.web.servlet Provides servlets that integrate with the application context infrastructure, and the core interfaces and classes for the Spring web MVC framework.  
org.springframework.web.servlet.handler Provides standard HandlerMapping implementations, including abstract base classes for custom implementations. 
org.springframework.web.servlet.mvc Standard controller implementations for the MVC framework that comes with Spring.  
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 ModelAndView in org.springframework.orm.hibernate.support
 

Methods in org.springframework.orm.hibernate.support with parameters of type ModelAndView
 void OpenSessionInViewInterceptor.postHandle(HttpServletRequest request, HttpServletResponse response, Object handler, ModelAndView modelAndView)
          Flush the Hibernate Session before view rendering, if necessary.
 

Uses of ModelAndView in org.springframework.remoting.caucho
 

Methods in org.springframework.remoting.caucho that return ModelAndView
 ModelAndView HessianServiceExporter.handleRequest(HttpServletRequest request, HttpServletResponse response)
          Process the incoming Hessian request and create a Hessian response.
 ModelAndView BurlapServiceExporter.handleRequest(HttpServletRequest request, HttpServletResponse response)
          Process the incoming Burlap request and create a Burlap response.
 

Uses of ModelAndView in org.springframework.remoting.httpinvoker
 

Methods in org.springframework.remoting.httpinvoker that return ModelAndView
 ModelAndView HttpInvokerServiceExporter.handleRequest(HttpServletRequest request, HttpServletResponse response)
          Read a remote invocation from the request, execute it, and write the remote invocation result to the response.
 

Uses of ModelAndView in org.springframework.web.servlet
 

Methods in org.springframework.web.servlet that return ModelAndView
protected  ModelAndView DispatcherServlet.processHandlerException(HttpServletRequest request, HttpServletResponse response, Object handler, Exception ex)
          Determine an error ModelAndView via the registered HandlerExceptionResolvers.
 ModelAndView HandlerExceptionResolver.resolveException(HttpServletRequest request, HttpServletResponse response, Object handler, Exception ex)
          Try to resolve the given exception that got thrown during on handler execution, returning a ModelAndView that represents a specific error page if appropriate.
 ModelAndView ModelAndViewDefiningException.getModelAndView()
          Return the ModelAndView that this exception contains for forwarding to.
 ModelAndView HandlerAdapter.handle(HttpServletRequest request, HttpServletResponse response, Object handler)
          Use the given handler to handle this request.
 ModelAndView ModelAndView.addObject(String modelName, Object modelObject)
          Add an object to the model.
 ModelAndView ModelAndView.addAllObjects(Map modelMap)
          Add all entries contained in the provided map to the model.
 

Methods in org.springframework.web.servlet with parameters of type ModelAndView
protected  void DispatcherServlet.render(ModelAndView mv, HttpServletRequest request, HttpServletResponse response)
          Render the given ModelAndView.
 void HandlerInterceptor.postHandle(HttpServletRequest request, HttpServletResponse response, Object handler, ModelAndView modelAndView)
          Intercept the execution of a handler.
 

Constructors in org.springframework.web.servlet with parameters of type ModelAndView
ModelAndViewDefiningException(ModelAndView modelAndView)
          Create new ModelAndViewDefiningException with the given ModelAndView, typically representing a specific error page.
 

Uses of ModelAndView in org.springframework.web.servlet.handler
 

Methods in org.springframework.web.servlet.handler that return ModelAndView
 ModelAndView SimpleMappingExceptionResolver.resolveException(HttpServletRequest request, HttpServletResponse response, Object handler, Exception ex)
           
protected  ModelAndView SimpleMappingExceptionResolver.getModelAndView(String viewName, Exception ex)
          Return a ModelAndView for the given view name and exception.
 ModelAndView SimpleServletHandlerAdapter.handle(HttpServletRequest request, HttpServletResponse response, Object handler)
           
 

Methods in org.springframework.web.servlet.handler with parameters of type ModelAndView
 void HandlerInterceptorAdapter.postHandle(HttpServletRequest request, HttpServletResponse response, Object handler, ModelAndView modelAndView)
          This implementation is empty.
 

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

Methods in org.springframework.web.servlet.mvc that return ModelAndView
protected  ModelAndView AbstractWizardFormController.showForm(HttpServletRequest request, HttpServletResponse response, BindException errors)
          Show first page as form view.
protected  ModelAndView AbstractWizardFormController.showPage(HttpServletRequest request, BindException errors, int page)
          Prepare the form model and view, including reference and error data, for the given page.
protected  ModelAndView AbstractWizardFormController.handleInvalidSubmit(HttpServletRequest request, HttpServletResponse response)
          Handle an invalid submit request, e.g. when in session form mode but no form object was found in the session (like in case of an invalid resubmit by the browser).
protected  ModelAndView AbstractWizardFormController.processFormSubmission(HttpServletRequest request, HttpServletResponse response, Object command, BindException errors)
          Apply wizard workflow: finish, cancel, page change.
protected abstract  ModelAndView AbstractWizardFormController.processFinish(HttpServletRequest request, HttpServletResponse response, Object command, BindException errors)
          Template method for processing the final action of this wizard.
protected  ModelAndView AbstractWizardFormController.processCancel(HttpServletRequest request, HttpServletResponse response, Object command, BindException errors)
          Template method for processing the cancel action of this wizard.
protected  ModelAndView AbstractFormController.handleRequestInternal(HttpServletRequest request, HttpServletResponse response)
          Handles two cases: form submissions and showing a new form.
protected  ModelAndView AbstractFormController.showNewForm(HttpServletRequest request, HttpServletResponse response)
          Show a new form.
protected abstract  ModelAndView AbstractFormController.showForm(HttpServletRequest request, HttpServletResponse response, BindException errors)
          Prepare the form model and view, including reference and error data.
protected  ModelAndView AbstractFormController.showForm(HttpServletRequest request, BindException errors, String viewName)
          Prepare model and view for the given form, including reference and errors.
protected  ModelAndView AbstractFormController.showForm(HttpServletRequest request, BindException errors, String viewName, 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(HttpServletRequest request, HttpServletResponse response, Object command, BindException errors)
          Process form submission request.
protected  ModelAndView AbstractFormController.handleInvalidSubmit(HttpServletRequest request, HttpServletResponse response)
          Handle an invalid submit request, e.g. when in session form mode but no form object was found in the session (like in case of an invalid resubmit by the browser).
protected  ModelAndView SimpleFormController.showForm(HttpServletRequest request, HttpServletResponse response, BindException errors)
          This implementation shows the configured form view, delegating to the analogous showForm version with a controlModel argument.
protected  ModelAndView SimpleFormController.showForm(HttpServletRequest request, HttpServletResponse response, BindException errors, Map controlModel)
          This implementation shows the configured form view.
protected  ModelAndView SimpleFormController.processFormSubmission(HttpServletRequest request, HttpServletResponse response, Object command, BindException errors)
          This implementation calls showForm in case of errors, and delegates to onSubmit's full version else.
protected  ModelAndView SimpleFormController.onSubmit(HttpServletRequest request, HttpServletResponse response, Object command, BindException errors)
          Submit callback with all parameters.
protected  ModelAndView SimpleFormController.onSubmit(Object command, BindException errors)
          Simpler onSubmit version.
protected  ModelAndView SimpleFormController.onSubmit(Object command)
          Simplest onSubmit version.
protected  ModelAndView ServletWrappingController.handleRequestInternal(HttpServletRequest request, HttpServletResponse response)
           
protected  ModelAndView ServletForwardingController.handleRequestInternal(HttpServletRequest request, HttpServletResponse response)
           
 ModelAndView SimpleControllerHandlerAdapter.handle(HttpServletRequest request, HttpServletResponse response, Object handler)
           
 ModelAndView Controller.handleRequest(HttpServletRequest request, HttpServletResponse response)
          Process the request and return a ModelAndView object which the DispatcherServlet will render.
protected  ModelAndView ParameterizableViewController.handleRequestInternal(HttpServletRequest request, HttpServletResponse response)
          Return a ModelAndView object with the specified view name.
 ModelAndView UrlFilenameViewController.handleRequest(HttpServletRequest request, HttpServletResponse response)
           
 ModelAndView AbstractController.handleRequest(HttpServletRequest request, HttpServletResponse response)
           
protected abstract  ModelAndView AbstractController.handleRequestInternal(HttpServletRequest request, HttpServletResponse response)
          Template method.
protected  ModelAndView AbstractCommandController.handleRequestInternal(HttpServletRequest request, HttpServletResponse response)
           
protected abstract  ModelAndView AbstractCommandController.handle(HttpServletRequest request, HttpServletResponse response, 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.
 

Methods in org.springframework.web.servlet.mvc with parameters of type ModelAndView
 void WebContentInterceptor.postHandle(HttpServletRequest request, HttpServletResponse response, Object handler, ModelAndView modelAndView)
          This implementation is empty.
 

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

Methods in org.springframework.web.servlet.mvc.multiaction that return ModelAndView
protected  ModelAndView MultiActionController.handleRequestInternal(HttpServletRequest request, HttpServletResponse response)
           
protected  ModelAndView MultiActionController.invokeNamedMethod(String method, HttpServletRequest request, HttpServletResponse response)
          Invoke the named method.
 

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

Methods in org.springframework.web.servlet.mvc.throwaway that return ModelAndView
 ModelAndView ThrowawayControllerHandlerAdapter.handle(HttpServletRequest request, HttpServletResponse response, Object handler)
           
 ModelAndView ThrowawayController.execute()
          Execute this controller according to its bean properties.
 



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