Java org.springframework.web.servlet.mvc.method.annotation RequestMappingHandlerAdapter fields, constructors, methods, implement or subclass

Example usage for Java org.springframework.web.servlet.mvc.method.annotation RequestMappingHandlerAdapter fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.springframework.web.servlet.mvc.method.annotation RequestMappingHandlerAdapter.

The text is from its open source code.

Subclass

org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter has subclasses.
Click this link to see all its subclasses.

Constructor

Method

voidafterPropertiesSet()
ListgetArgumentResolvers()
Return the configured argument resolvers, or possibly null if not initialized yet via #afterPropertiesSet() .
ListgetCustomArgumentResolvers()
Return the custom argument resolvers, or null .
List>getMessageConverters()
Return the configured message body converters.
ListgetReturnValueHandlers()
Return the configured handlers, or possibly null if not initialized yet via #afterPropertiesSet() .
WebBindingInitializergetWebBindingInitializer()
Return the configured WebBindingInitializer, or null if none.
voidsetApplicationContext(@Nullable ApplicationContext context)
voidsetArgumentResolvers(@Nullable List argumentResolvers)
Configure the complete list of supported argument types thus overriding the resolvers that would otherwise be configured by default.
voidsetContentNegotiationManager(ContentNegotiationManager contentNegotiationManager)
Set the ContentNegotiationManager to use to determine requested media types.
voidsetCustomArgumentResolvers(@Nullable List argumentResolvers)
Provide resolvers for custom argument types.
voidsetIgnoreDefaultModelOnRedirect(boolean ignoreDefaultModelOnRedirect)
By default the content of the "default" model is used both during rendering and redirect scenarios.
voidsetMessageConverters(List> messageConverters)
Provide the converters to use in argument resolvers and return value handlers that support reading and/or writing to the body of the request and response.
voidsetOrder(int order)
Specify the order value for this HandlerAdapter bean.
voidsetReturnValueHandlers(@Nullable List returnValueHandlers)
Configure the complete list of supported return value types thus overriding handlers that would otherwise be configured by default.
voidsetSynchronizeOnSession(boolean synchronizeOnSession)
Set if controller execution should be synchronized on the session, to serialize parallel invocations from the same client.
voidsetWebBindingInitializer(@Nullable WebBindingInitializer webBindingInitializer)
Provide a WebBindingInitializer with "global" initialization to apply to every DataBinder instance.