WebMvcConfigurer
has default methods (made
possible by a Java 8 baseline) and can be implemented directly without the
need for this adapter@Deprecated public abstract class WebMvcConfigurerAdapter extends Object implements WebMvcConfigurer
WebMvcConfigurer
with empty methods allowing
subclasses to override only the methods they're interested in.Constructor and Description |
---|
WebMvcConfigurerAdapter()
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
void |
addArgumentResolvers(List<HandlerMethodArgumentResolver> argumentResolvers)
Deprecated.
Add resolvers to support custom controller method argument types.
|
void |
addCorsMappings(CorsRegistry registry)
Deprecated.
Configure "global" cross origin request processing.
|
void |
addFormatters(FormatterRegistry registry)
Deprecated.
Add
Converters and Formatters in addition to the ones
registered by default. |
void |
addInterceptors(InterceptorRegistry registry)
Deprecated.
Add Spring MVC lifecycle interceptors for pre- and post-processing of
controller method invocations and resource handler requests.
|
void |
addResourceHandlers(ResourceHandlerRegistry registry)
Deprecated.
Add handlers to serve static resources such as images, js, and, css
files from specific locations under web application root, the classpath,
and others.
|
void |
addReturnValueHandlers(List<HandlerMethodReturnValueHandler> returnValueHandlers)
Deprecated.
Add handlers to support custom controller method return value types.
|
void |
addViewControllers(ViewControllerRegistry registry)
Deprecated.
Configure simple automated controllers pre-configured with the response
status code and/or a view to render the response body.
|
void |
configureAsyncSupport(AsyncSupportConfigurer configurer)
Deprecated.
Configure asynchronous request handling options.
|
void |
configureContentNegotiation(ContentNegotiationConfigurer configurer)
Deprecated.
Configure content negotiation options.
|
void |
configureDefaultServletHandling(DefaultServletHandlerConfigurer configurer)
Deprecated.
Configure a handler to delegate unhandled requests by forwarding to the
Servlet container's "default" servlet.
|
void |
configureHandlerExceptionResolvers(List<HandlerExceptionResolver> exceptionResolvers)
Deprecated.
Configure exception resolvers.
|
void |
configureMessageConverters(List<HttpMessageConverter<?>> converters)
Deprecated.
Configure the
HttpMessageConverter s for
reading from the request body and for writing to the response body. |
void |
configurePathMatch(PathMatchConfigurer configurer)
Deprecated.
Help with configuring
HandlerMapping path matching options such as
whether to use parsed PathPatterns or String pattern matching
with PathMatcher , whether to match trailing slashes, and more. |
void |
configureViewResolvers(ViewResolverRegistry registry)
Deprecated.
Configure view resolvers to translate String-based view names returned from
controllers into concrete
View
implementations to perform rendering with. |
void |
extendHandlerExceptionResolvers(List<HandlerExceptionResolver> exceptionResolvers)
Deprecated.
Extending or modify the list of exception resolvers configured by default.
|
void |
extendMessageConverters(List<HttpMessageConverter<?>> converters)
Deprecated.
Extend or modify the list of converters after it has been, either
configured or initialized with
a default list. |
MessageCodesResolver |
getMessageCodesResolver()
Deprecated.
Provide a custom
MessageCodesResolver for building message codes
from data binding and validation error codes. |
Validator |
getValidator()
Deprecated.
Provide a custom
Validator instead of the one created by default. |
public void configurePathMatch(PathMatchConfigurer configurer)
HandlerMapping
path matching options such as
whether to use parsed PathPatterns
or String pattern matching
with PathMatcher
, whether to match trailing slashes, and more.
This implementation is empty.
configurePathMatch
in interface WebMvcConfigurer
PathMatchConfigurer
public void configureContentNegotiation(ContentNegotiationConfigurer configurer)
This implementation is empty.
configureContentNegotiation
in interface WebMvcConfigurer
public void configureAsyncSupport(AsyncSupportConfigurer configurer)
This implementation is empty.
configureAsyncSupport
in interface WebMvcConfigurer
public void configureDefaultServletHandling(DefaultServletHandlerConfigurer configurer)
DispatcherServlet
is mapped to "/" thus overriding the
Servlet container's default handling of static resources.
This implementation is empty.
configureDefaultServletHandling
in interface WebMvcConfigurer
public void addFormatters(FormatterRegistry registry)
Converters
and Formatters
in addition to the ones
registered by default.
This implementation is empty.
addFormatters
in interface WebMvcConfigurer
public void addInterceptors(InterceptorRegistry registry)
This implementation is empty.
addInterceptors
in interface WebMvcConfigurer
public void addResourceHandlers(ResourceHandlerRegistry registry)
This implementation is empty.
addResourceHandlers
in interface WebMvcConfigurer
ResourceHandlerRegistry
public void addCorsMappings(CorsRegistry registry)
Annotated controllers can further declare more fine-grained config via
@CrossOrigin
.
In such cases "global" CORS configuration declared here is
combined
with local CORS configuration defined on a controller method.
This implementation is empty.
addCorsMappings
in interface WebMvcConfigurer
CorsRegistry
,
CorsConfiguration.combine(CorsConfiguration)
public void addViewControllers(ViewControllerRegistry registry)
This implementation is empty.
addViewControllers
in interface WebMvcConfigurer
ViewControllerRegistry
public void configureViewResolvers(ViewResolverRegistry registry)
View
implementations to perform rendering with.
This implementation is empty.
configureViewResolvers
in interface WebMvcConfigurer
public void addArgumentResolvers(List<HandlerMethodArgumentResolver> argumentResolvers)
This does not override the built-in support for resolving handler
method arguments. To customize the built-in support for argument
resolution, configure RequestMappingHandlerAdapter
directly.
This implementation is empty.
addArgumentResolvers
in interface WebMvcConfigurer
argumentResolvers
- initially an empty listpublic void addReturnValueHandlers(List<HandlerMethodReturnValueHandler> returnValueHandlers)
Using this option does not override the built-in support for handling return values. To customize the built-in support for handling return values, configure RequestMappingHandlerAdapter directly.
This implementation is empty.
addReturnValueHandlers
in interface WebMvcConfigurer
returnValueHandlers
- initially an empty listpublic void configureMessageConverters(List<HttpMessageConverter<?>> converters)
HttpMessageConverter
s for
reading from the request body and for writing to the response body.
By default, all built-in converters are configured as long as the corresponding 3rd party libraries such Jackson JSON, JAXB2, and others are present on the classpath.
Note use of this method turns off default converter
registration. Alternatively, use
WebMvcConfigurer.extendMessageConverters(java.util.List)
to modify that default
list of converters.
This implementation is empty.
configureMessageConverters
in interface WebMvcConfigurer
converters
- initially an empty list of converterspublic void extendMessageConverters(List<HttpMessageConverter<?>> converters)
configured
or initialized with
a default list.
Note that the order of converter registration is important. Especially
in cases where clients accept MediaType.ALL
the converters configured earlier will be preferred.
This implementation is empty.
extendMessageConverters
in interface WebMvcConfigurer
converters
- the list of configured converters to be extendedpublic void configureHandlerExceptionResolvers(List<HandlerExceptionResolver> exceptionResolvers)
The given list starts out empty. If it is left empty, the framework
configures a default set of resolvers, see
WebMvcConfigurationSupport.addDefaultHandlerExceptionResolvers(List, org.springframework.web.accept.ContentNegotiationManager)
.
Or if any exception resolvers are added to the list, then the application
effectively takes over and must provide, fully initialized, exception
resolvers.
Alternatively you can use
WebMvcConfigurer.extendHandlerExceptionResolvers(List)
which allows you to extend
or modify the list of exception resolvers configured by default.
This implementation is empty.
configureHandlerExceptionResolvers
in interface WebMvcConfigurer
exceptionResolvers
- initially an empty listWebMvcConfigurer.extendHandlerExceptionResolvers(List)
,
WebMvcConfigurationSupport.addDefaultHandlerExceptionResolvers(List, org.springframework.web.accept.ContentNegotiationManager)
public void extendHandlerExceptionResolvers(List<HandlerExceptionResolver> exceptionResolvers)
This implementation is empty.
extendHandlerExceptionResolvers
in interface WebMvcConfigurer
exceptionResolvers
- the list of configured resolvers to extendWebMvcConfigurationSupport.addDefaultHandlerExceptionResolvers(List, org.springframework.web.accept.ContentNegotiationManager)
@Nullable public Validator getValidator()
Validator
instead of the one created by default.
The default implementation, assuming JSR-303 is on the classpath, is:
OptionalValidatorFactoryBean
.
Leave the return value as null
to keep the default.
This implementation returns null
.
getValidator
in interface WebMvcConfigurer
@Nullable public MessageCodesResolver getMessageCodesResolver()
MessageCodesResolver
for building message codes
from data binding and validation error codes. Leave the return value as
null
to keep the default.
This implementation returns null
.
getMessageCodesResolver
in interface WebMvcConfigurer