|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use ModelAndView | |
---|---|
org.springframework.orm.hibernate.support | Classes supporting the org.springframework.orm.hibernate package. |
org.springframework.orm.hibernate3.support | Classes supporting the org.springframework.orm.hibernate3 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.orm.hibernate3.support |
---|
Methods in org.springframework.orm.hibernate3.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 | |
---|---|
ModelAndView |
ModelAndView.addAllObjects(Map modelMap)
Add all entries contained in the provided map to the model. |
ModelAndView |
ModelAndView.addObject(String modelName,
Object modelObject)
Add an object to the model. |
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. |
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. |
Methods in org.springframework.web.servlet with parameters of type ModelAndView | |
---|---|
void |
HandlerInterceptor.postHandle(HttpServletRequest request,
HttpServletResponse response,
Object handler,
ModelAndView modelAndView)
Intercept the execution of a handler. |
protected void |
DispatcherServlet.render(ModelAndView mv,
HttpServletRequest request,
HttpServletResponse response)
Render the given ModelAndView. |
Constructors in org.springframework.web.servlet with parameters of type ModelAndView | |
---|---|
ModelAndViewDefiningException(ModelAndView modelAndView)
Create a 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 | |
---|---|
protected ModelAndView |
SimpleMappingExceptionResolver.getModelAndView(String viewName,
Exception ex)
Return a ModelAndView for the given view name and exception. |
protected ModelAndView |
SimpleMappingExceptionResolver.getModelAndView(String viewName,
Exception ex,
HttpServletRequest request)
Return a ModelAndView for the given request, view name and exception. |
ModelAndView |
SimpleServletHandlerAdapter.handle(HttpServletRequest request,
HttpServletResponse response,
Object handler)
|
ModelAndView |
SimpleMappingExceptionResolver.resolveException(HttpServletRequest request,
HttpServletResponse response,
Object handler,
Exception ex)
|
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 | |
---|---|
ModelAndView |
SimpleControllerHandlerAdapter.handle(HttpServletRequest request,
HttpServletResponse response,
Object handler)
|
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. |
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 |
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). |
ModelAndView |
Controller.handleRequest(HttpServletRequest request,
HttpServletResponse response)
Process the request and return a ModelAndView object which the DispatcherServlet will render. |
ModelAndView |
AbstractController.handleRequest(HttpServletRequest request,
HttpServletResponse response)
|
protected ModelAndView |
ServletWrappingController.handleRequestInternal(HttpServletRequest request,
HttpServletResponse response)
|
protected ModelAndView |
ServletForwardingController.handleRequestInternal(HttpServletRequest request,
HttpServletResponse response)
|
protected ModelAndView |
ParameterizableViewController.handleRequestInternal(HttpServletRequest request,
HttpServletResponse response)
Return a ModelAndView object with the specified view name. |
protected ModelAndView |
AbstractUrlViewController.handleRequestInternal(HttpServletRequest request,
HttpServletResponse response)
Retrieves the URL path to use for lookup and delegates to getViewNameForUrlPath . |
protected ModelAndView |
AbstractFormController.handleRequestInternal(HttpServletRequest request,
HttpServletResponse response)
Handles two cases: form submissions and showing a new form. |
protected abstract ModelAndView |
AbstractController.handleRequestInternal(HttpServletRequest request,
HttpServletResponse response)
Template method. |
protected ModelAndView |
AbstractCommandController.handleRequestInternal(HttpServletRequest request,
HttpServletResponse response)
|
protected ModelAndView |
CancellableFormController.onCancel(HttpServletRequest request,
HttpServletResponse response,
Object command)
Callback method for handling a cancel request. |
protected ModelAndView |
CancellableFormController.onCancel(Object command)
Simple onCancel version. |
protected ModelAndView |
SimpleFormController.onSubmit(HttpServletRequest request,
HttpServletResponse response,
Object command,
BindException errors)
Submit callback with all parameters. |
protected ModelAndView |
SimpleFormController.onSubmit(Object command)
Simplest onSubmit version. |
protected ModelAndView |
SimpleFormController.onSubmit(Object command,
BindException errors)
Simpler onSubmit version. |
protected ModelAndView |
AbstractWizardFormController.processCancel(HttpServletRequest request,
HttpServletResponse response,
Object command,
BindException errors)
Template method for processing the cancel action of this wizard. |
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 |
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 |
CancellableFormController.processFormSubmission(HttpServletRequest request,
HttpServletResponse response,
Object command,
BindException errors)
This implementation first checks to see if the incoming is a cancel request, through a call to CancellableFormController.isCancelRequest(javax.servlet.http.HttpServletRequest) . |
protected ModelAndView |
AbstractWizardFormController.processFormSubmission(HttpServletRequest request,
HttpServletResponse response,
Object command,
BindException errors)
Apply wizard workflow: finish, cancel, page change. |
protected abstract ModelAndView |
AbstractFormController.processFormSubmission(HttpServletRequest request,
HttpServletResponse response,
Object command,
BindException errors)
Process form submission request. |
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 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 |
AbstractWizardFormController.showForm(HttpServletRequest request,
HttpServletResponse response,
BindException errors)
Show first page as form view. |
protected abstract ModelAndView |
AbstractFormController.showForm(HttpServletRequest request,
HttpServletResponse response,
BindException errors)
Prepare the form model and view, including reference and error data. |
protected ModelAndView |
SimpleFormController.showForm(HttpServletRequest request,
HttpServletResponse response,
BindException errors,
Map controlModel)
This implementation shows the configured form view. |
protected ModelAndView |
AbstractFormController.showNewForm(HttpServletRequest request,
HttpServletResponse response)
Show a new form. |
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. |
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.handleNoSuchRequestHandlingMethod(NoSuchRequestHandlingMethodException ex,
HttpServletRequest request,
HttpServletResponse response)
Handle the case where no request handler method was found. |
protected ModelAndView |
MultiActionController.handleRequestInternal(HttpServletRequest request,
HttpServletResponse response)
Determine a handler method and invoke it. |
protected ModelAndView |
MultiActionController.invokeNamedMethod(String methodName,
HttpServletRequest request,
HttpServletResponse response)
Invokes 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 |
ThrowawayController.execute()
Execute this controller according to its bean properties. |
ModelAndView |
ThrowawayControllerHandlerAdapter.handle(HttpServletRequest request,
HttpServletResponse response,
Object handler)
This implementation binds request parameters to the ThrowawayController instance and then calls execute on it. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |