Package | Description |
---|---|
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.method.annotation |
MVC infrastructure for annotation-based handler method processing, building on the
org.springframework.web.method.annotation package. |
org.springframework.web.servlet.mvc.multiaction |
Package allowing MVC Controller implementations to handle requests
at method rather than class level.
|
Modifier and Type | Method and Description |
---|---|
protected ServletRequestDataBinder |
BaseCommandController.bindAndValidate(javax.servlet.http.HttpServletRequest request,
Object command)
Deprecated.
Bind the parameters of the given request to the given command object.
|
protected ServletRequestDataBinder |
BaseCommandController.createBinder(javax.servlet.http.HttpServletRequest request,
Object command)
Deprecated.
Create a new binder instance for the given command and request.
|
Modifier and Type | Method and Description |
---|---|
protected void |
BaseCommandController.initBinder(javax.servlet.http.HttpServletRequest request,
ServletRequestDataBinder binder)
Deprecated.
Initialize the given binder instance, for example with custom editors.
|
protected void |
BaseCommandController.prepareBinder(ServletRequestDataBinder binder)
Deprecated.
Prepare the given binder, applying the specified MessageCodesResolver,
BindingErrorProcessor and PropertyEditorRegistrars (if any).
|
Modifier and Type | Method and Description |
---|---|
protected ServletRequestDataBinder |
AnnotationMethodHandlerAdapter.createBinder(javax.servlet.http.HttpServletRequest request,
Object target,
String objectName)
Deprecated.
Template method for creating a new ServletRequestDataBinder instance.
|
Modifier and Type | Class and Description |
---|---|
class |
ExtendedServletRequestDataBinder
Subclass of
ServletRequestDataBinder that adds URI template variables
to the values used for data binding. |
Modifier and Type | Method and Description |
---|---|
protected ServletRequestDataBinder |
ServletRequestDataBinderFactory.createBinderInstance(Object target,
String objectName,
NativeWebRequest request)
Returns an instance of
ExtendedServletRequestDataBinder . |
Modifier and Type | Method and Description |
---|---|
protected ServletRequestDataBinder |
MultiActionController.createBinder(javax.servlet.http.HttpServletRequest request,
Object command)
Create a new binder instance for the given command and request.
|
Modifier and Type | Method and Description |
---|---|
protected void |
MultiActionController.initBinder(javax.servlet.http.HttpServletRequest request,
ServletRequestDataBinder binder)
Initialize the given binder instance, for example with custom editors.
|
Copyright © 2015. All rights reserved.