Package | Description |
---|---|
org.springframework.web.bind.support |
Support classes for web data binding.
|
org.springframework.web.method.annotation |
Support classes for annotation-based handler method processing.
|
org.springframework.web.reactive |
Top-level package for the
spring-webflux module that contains
DispatcherHandler , the main entry
point for WebFlux server endpoint processing including key contracts used to
map requests to handlers, invoke them, and process the result. |
org.springframework.web.reactive.result.method.annotation |
Infrastructure for annotation-based handler method processing.
|
org.springframework.web.servlet.mvc.method.annotation |
MVC infrastructure for annotation-based handler method processing, building on the
org.springframework.web.method.annotation package. |
Modifier and Type | Class and Description |
---|---|
class |
ConfigurableWebBindingInitializer
Convenient
WebBindingInitializer for declarative configuration
in a Spring application context. |
Constructor and Description |
---|
DefaultDataBinderFactory(WebBindingInitializer initializer)
Create a new
DefaultDataBinderFactory instance. |
Constructor and Description |
---|
InitBinderDataBinderFactory(List<InvocableHandlerMethod> binderMethods,
WebBindingInitializer initializer)
Create a new InitBinderDataBinderFactory instance.
|
Constructor and Description |
---|
BindingContext(WebBindingInitializer initializer)
Create a new
BindingContext with the given initializer. |
Modifier and Type | Method and Description |
---|---|
WebBindingInitializer |
RequestMappingHandlerAdapter.getWebBindingInitializer()
Return the configured WebBindingInitializer, or
null if none. |
Modifier and Type | Method and Description |
---|---|
void |
RequestMappingHandlerAdapter.setWebBindingInitializer(WebBindingInitializer webBindingInitializer)
Provide a WebBindingInitializer with "global" initialization to apply
to every DataBinder instance.
|
Modifier and Type | Method and Description |
---|---|
WebBindingInitializer |
RequestMappingHandlerAdapter.getWebBindingInitializer()
Return the configured WebBindingInitializer, or
null if none. |
Modifier and Type | Method and Description |
---|---|
void |
RequestMappingHandlerAdapter.setWebBindingInitializer(WebBindingInitializer webBindingInitializer)
Provide a WebBindingInitializer with "global" initialization to apply
to every DataBinder instance.
|
Constructor and Description |
---|
ServletRequestDataBinderFactory(List<InvocableHandlerMethod> binderMethods,
WebBindingInitializer initializer)
Create a new instance.
|