Uses of Class
org.springframework.web.accept.ContentNegotiationManager
Packages that use ContentNegotiationManager Package Description org.springframework.test.web.servlet.setup Contains built-inMockMvcBuilder
implementations.org.springframework.web.accept This package contains classes used to determine the requested the media types in a request.org.springframework.web.servlet.config.annotation Annotation-based setup for Spring MVC.org.springframework.web.servlet.mvc.condition Common MVC logic for matching incoming requests based on conditions.org.springframework.web.servlet.mvc.method Servlet-based infrastructure for handler method processing, building on theorg.springframework.web.method
package.org.springframework.web.servlet.mvc.method.annotation MVC infrastructure for annotation-based handler method processing, building on theorg.springframework.web.method.annotation
package.org.springframework.web.servlet.resource Support classes for serving static resources.org.springframework.web.servlet.view Provides standard View and ViewResolver implementations, including abstract base classes for custom implementations.Uses of ContentNegotiationManager in org.springframework.test.web.servlet.setup
Methods in org.springframework.test.web.servlet.setup with parameters of type ContentNegotiationManager Modifier and Type Method Description StandaloneMockMvcBuilder
StandaloneMockMvcBuilder. setContentNegotiationManager(ContentNegotiationManager manager)
Set a ContentNegotiationManager.Uses of ContentNegotiationManager in org.springframework.web.accept
Methods in org.springframework.web.accept that return ContentNegotiationManager Modifier and Type Method Description ContentNegotiationManager
ContentNegotiationManagerFactoryBean. build()
Create and initialize aContentNegotiationManager
instance.ContentNegotiationManager
ContentNegotiationManagerFactoryBean. getObject()
Uses of ContentNegotiationManager in org.springframework.web.servlet.config.annotation
Methods in org.springframework.web.servlet.config.annotation that return ContentNegotiationManager Modifier and Type Method Description protected ContentNegotiationManager
ContentNegotiationConfigurer. buildContentNegotiationManager()
Build aContentNegotiationManager
based on this configurer's settings.ContentNegotiationManager
WebMvcConfigurationSupport. mvcContentNegotiationManager()
Return aContentNegotiationManager
instance to use to determine requested media types in a given request.Constructors in org.springframework.web.servlet.config.annotation with parameters of type ContentNegotiationManager Constructor Description ResourceHandlerRegistry(ApplicationContext applicationContext, ServletContext servletContext, ContentNegotiationManager contentNegotiationManager)
Create a new resource handler registry for the given application context.ResourceHandlerRegistry(ApplicationContext applicationContext, ServletContext servletContext, ContentNegotiationManager contentNegotiationManager, UrlPathHelper pathHelper)
A variant ofResourceHandlerRegistry(ApplicationContext, ServletContext, ContentNegotiationManager)
that also accepts theUrlPathHelper
used for mapping requests to static resources.ViewResolverRegistry(ContentNegotiationManager contentNegotiationManager, ApplicationContext context)
Class constructor withContentNegotiationManager
andApplicationContext
.Uses of ContentNegotiationManager in org.springframework.web.servlet.mvc.condition
Constructors in org.springframework.web.servlet.mvc.condition with parameters of type ContentNegotiationManager Constructor Description ProducesRequestCondition(String[] produces, String[] headers, ContentNegotiationManager manager)
Same asProducesRequestCondition(String[], String[])
but also accepting aContentNegotiationManager
.Uses of ContentNegotiationManager in org.springframework.web.servlet.mvc.method
Methods in org.springframework.web.servlet.mvc.method that return ContentNegotiationManager Modifier and Type Method Description ContentNegotiationManager
RequestMappingInfo.BuilderConfiguration. getContentNegotiationManager()
Return the ContentNegotiationManager to use for the ProducesRequestCondition, if any.Methods in org.springframework.web.servlet.mvc.method with parameters of type ContentNegotiationManager Modifier and Type Method Description void
RequestMappingInfo.BuilderConfiguration. setContentNegotiationManager(ContentNegotiationManager contentNegotiationManager)
Set the ContentNegotiationManager to use for the ProducesRequestCondition.Uses of ContentNegotiationManager in org.springframework.web.servlet.mvc.method.annotation
Methods in org.springframework.web.servlet.mvc.method.annotation that return ContentNegotiationManager Modifier and Type Method Description ContentNegotiationManager
ExceptionHandlerExceptionResolver. getContentNegotiationManager()
Return the configuredContentNegotiationManager
.ContentNegotiationManager
RequestMappingHandlerMapping. getContentNegotiationManager()
Return the configuredContentNegotiationManager
.Methods in org.springframework.web.servlet.mvc.method.annotation with parameters of type ContentNegotiationManager Modifier and Type Method Description void
ExceptionHandlerExceptionResolver. setContentNegotiationManager(ContentNegotiationManager contentNegotiationManager)
Set theContentNegotiationManager
to use to determine requested media types.void
RequestMappingHandlerAdapter. setContentNegotiationManager(ContentNegotiationManager contentNegotiationManager)
Set theContentNegotiationManager
to use to determine requested media types.void
RequestMappingHandlerMapping. setContentNegotiationManager(ContentNegotiationManager contentNegotiationManager)
Set theContentNegotiationManager
to use to determine requested media types.Constructors in org.springframework.web.servlet.mvc.method.annotation with parameters of type ContentNegotiationManager Constructor Description AbstractMessageConverterMethodProcessor(List<HttpMessageConverter<?>> converters, ContentNegotiationManager contentNegotiationManager)
Constructor with list of converters and ContentNegotiationManager.AbstractMessageConverterMethodProcessor(List<HttpMessageConverter<?>> converters, ContentNegotiationManager manager, List<Object> requestResponseBodyAdvice)
Constructor with list of converters and ContentNegotiationManager as well as request/response body advice instances.HttpEntityMethodProcessor(List<HttpMessageConverter<?>> converters, ContentNegotiationManager manager)
Basic constructor with converters andContentNegotiationManager
.HttpEntityMethodProcessor(List<HttpMessageConverter<?>> converters, ContentNegotiationManager manager, List<Object> requestResponseBodyAdvice)
Complete constructor for resolvingHttpEntity
and handlingResponseEntity
.RequestResponseBodyMethodProcessor(List<HttpMessageConverter<?>> converters, ContentNegotiationManager manager)
Basic constructor with converters andContentNegotiationManager
.RequestResponseBodyMethodProcessor(List<HttpMessageConverter<?>> converters, ContentNegotiationManager manager, List<Object> requestResponseBodyAdvice)
Complete constructor for resolving@RequestBody
and handling@ResponseBody
.ResponseBodyEmitterReturnValueHandler(List<HttpMessageConverter<?>> messageConverters, ReactiveAdapterRegistry registry, TaskExecutor executor, ContentNegotiationManager manager)
Complete constructor with pluggable "reactive" type support.Uses of ContentNegotiationManager in org.springframework.web.servlet.resource
Methods in org.springframework.web.servlet.resource that return ContentNegotiationManager Modifier and Type Method Description ContentNegotiationManager
ResourceHttpRequestHandler. getContentNegotiationManager()
Deprecated.as of 5.2.4.Methods in org.springframework.web.servlet.resource with parameters of type ContentNegotiationManager Modifier and Type Method Description void
ResourceHttpRequestHandler. setContentNegotiationManager(ContentNegotiationManager contentNegotiationManager)
Deprecated.as of 5.2.4 in favor of usingResourceHttpRequestHandler.setMediaTypes(Map)
with mappings possibly obtained fromgetMediaTypeMappings()
.Uses of ContentNegotiationManager in org.springframework.web.servlet.view
Methods in org.springframework.web.servlet.view that return ContentNegotiationManager Modifier and Type Method Description ContentNegotiationManager
ContentNegotiatingViewResolver. getContentNegotiationManager()
Return theContentNegotiationManager
to use to determine requested media types.Methods in org.springframework.web.servlet.view with parameters of type ContentNegotiationManager Modifier and Type Method Description void
ContentNegotiatingViewResolver. setContentNegotiationManager(ContentNegotiationManager contentNegotiationManager)
Set theContentNegotiationManager
to use to determine requested media types.