Generated by
JDiff

Class org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport

Documentation changed from old to new.

Changed from abstract to non-abstract.

Added Methods
void configureAsyncSupport(AsyncSupportConfigurer) Override this method to configure asynchronous request processing options.
void configureContentNegotiation(ContentNegotiationConfigurer) Override this method to configure content negotiation.
(Map<String, MediaType>getDefaultMediaTypes()  
MessageCodesResolver getMessageCodesResolver() Override this method to provide a custom MessageCodesResolver.
ContentNegotiationManager mvcContentNegotiationManager() Return a ContentNegotiationManager instance to use to determine requested MediaType media types in a given request.
 

Changed Methods
void addArgumentResolvers(List<HandlerMethodArgumentResolver>) Documentation changed from old to new.
Add custom HandlerMethodArgumentResolvers to use in addition to the ones registered by default.
void addDefaultHandlerExceptionResolvers(List<HandlerExceptionResolver>) Documentation changed from old to new.
A method available to subclasses for adding default HandlerExceptionResolvers.
void addDefaultHttpMessageConverters(List<HttpMessageConverter<?>>) Documentation changed from old to new.
Adds a set of default HttpMessageConverter instances to the given list.
void addInterceptors(InterceptorRegistry) Documentation changed from old to new.
Override this method to add Spring MVC interceptors for pre- and post-processing of controller invocation.
void addResourceHandlers(ResourceHandlerRegistry) Documentation changed from old to new.
Override this method to add resource handlers for serving static resources.
void addReturnValueHandlers(List<HandlerMethodReturnValueHandler>) Documentation changed from old to new.
Add custom HandlerMethodReturnValueHandlers in addition to the ones registered by default.
BeanNameUrlHandlerMapping beanNameHandlerMapping() Documentation changed from old to new.
Return a BeanNameUrlHandlerMapping ordered at 2 to map URL paths to controller bean names.
void configureDefaultServletHandling(DefaultServletHandlerConfigurer) Documentation changed from old to new.
Override this method to configure "default" Servlet handling.
void configureHandlerExceptionResolvers(List<HandlerExceptionResolver>) Documentation changed from old to new.
Override this method to configure the list of HandlerExceptionResolvers to use.
void configureMessageConverters(List<HttpMessageConverter<?>>) Documentation changed from old to new.
Override this method to add custom HttpMessageConverters to use with the RequestMappingHandlerAdapter and the ExceptionHandlerExceptionResolver.
HandlerMapping defaultServletHandlerMapping() Documentation changed from old to new.
Return a handler mapping ordered at Integer.MAX_VALUE with a mapped default servlet handler.
Object[] getInterceptors() Documentation changed from old to new.
Provide access to the shared handler interceptors used to configure HandlerMapping instances with.
List<HttpMessageConverter<?>> getMessageConverters() Documentation changed from old to new.
Provides access to the shared HttpMessageConverters used by the RequestMappingHandlerAdapter and the ExceptionHandlerExceptionResolver.
HandlerExceptionResolver handlerExceptionResolver() Change in exceptions thrown from java.lang.Exception to no exceptions.
Documentation changed from old to new.
Returns a HandlerExceptionResolverComposite containing a list of exception resolvers obtained either through .configureHandlerExceptionResolvers(List) or through .addDefaultHandlerExceptionResolvers(List).
HttpRequestHandlerAdapter httpRequestHandlerAdapter() Documentation changed from old to new.
Returns a HttpRequestHandlerAdapter for processing requests with HttpRequestHandlers.
FormattingConversionService mvcConversionService() Documentation changed from old to new.
Returns a FormattingConversionService for use with annotated controller methods and the {@code spring:eval} JSP tag.
Validator mvcValidator() Documentation changed from old to new.
Returns a global Validator instance for example for validating {@code @ModelAttribute} and {@code @RequestBody} method arguments.
RequestMappingHandlerAdapter requestMappingHandlerAdapter() Documentation changed from old to new.
Returns a RequestMappingHandlerAdapter for processing requests through annotated controller methods.
RequestMappingHandlerMapping requestMappingHandlerMapping() Documentation changed from old to new.
Return a RequestMappingHandlerMapping ordered at 0 for mapping requests to annotated controllers.
HandlerMapping resourceHandlerMapping() Documentation changed from old to new.
Return a handler mapping ordered at Integer.MAX_VALUE-1 with mapped resource handlers.
SimpleControllerHandlerAdapter simpleControllerHandlerAdapter() Documentation changed from old to new.
Returns a SimpleControllerHandlerAdapter for processing requests with interface-based controllers.
HandlerMapping viewControllerHandlerMapping() Documentation changed from old to new.
Return a handler mapping ordered at 1 to map URL paths directly to view names.