Generated by
JDiff

Interface org.springframework.web.servlet.config.annotation.WebMvcConfigurer

Documentation changed from old to new.

Added Methods
void configureAsyncSupport(AsyncSupportConfigurer) Configure asynchronous request handling options.
void configureContentNegotiation(ContentNegotiationConfigurer) Configure content negotiation options.
MessageCodesResolver getMessageCodesResolver() Provide a custom MessageCodesResolver for building message codes from data binding and validation error codes.
 

Changed Methods
void addArgumentResolvers(List<HandlerMethodArgumentResolver>) Documentation changed from old to new.
Add resolvers to support custom controller method argument types.
void addFormatters(FormatterRegistry) Documentation changed from old to new.
Add Converters and Formatters in addition to the ones registered by default.
void addInterceptors(InterceptorRegistry) Documentation changed from old to new.
Add Spring MVC lifecycle interceptors for pre- and post-processing of controller method invocations.
void addResourceHandlers(ResourceHandlerRegistry) Documentation changed from old to new.
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>) Documentation changed from old to new.
Add handlers to support custom controller method return value types.
void addViewControllers(ViewControllerRegistry) Documentation changed from old to new.
Add view controllers to create a direct mapping between a URL path and view name without the need for a controller in between.
void configureDefaultServletHandling(DefaultServletHandlerConfigurer) Documentation changed from old to new.
Configure a handler to delegate unhandled requests by forwarding to the Servlet container's "default" servlet.
void configureHandlerExceptionResolvers(List<HandlerExceptionResolver>) Documentation changed from old to new.
Configure the HandlerExceptionResolvers to handle unresolved controller exceptions.