Class ContentNegotiationManagerFactoryBean
- All Implemented Interfaces:
org.springframework.beans.factory.Aware
,org.springframework.beans.factory.FactoryBean<ContentNegotiationManager>
,org.springframework.beans.factory.InitializingBean
,ServletContextAware
ContentNegotiationManager
and configure it with
ContentNegotiationStrategy
instances.
This factory offers properties that in turn result in configuring the underlying strategies. The table below shows the property names, their default settings, as well as the strategies that they help to configure:
Property Setter | Default Value | Underlying Strategy | Enabled Or Not |
---|---|---|---|
favorParameter |
false | ParameterContentNegotiationStrategy |
Off |
favorPathExtension |
false (as of 5.3) | PathExtensionContentNegotiationStrategy |
Off |
ignoreAcceptHeader |
false | HeaderContentNegotiationStrategy |
Enabled |
defaultContentType |
null | FixedContentNegotiationStrategy |
Off |
defaultContentTypeStrategy |
null | ContentNegotiationStrategy |
Off |
Alternatively you can avoid use of the above convenience builder
methods and set the exact strategies to use via
setStrategies(List)
.
Deprecation Note: As of 5.2.4,
favorPathExtension
and
ignoreUnknownPathExtensions
are deprecated in order to discourage using path extensions for content
negotiation and for request mapping with similar deprecations on
RequestMappingHandlerMapping
. For further context, please read issue
#24719.
- Since:
- 3.2
- Author:
- Rossen Stoyanchev, Brian Clozel
-
Field Summary
Fields inherited from interface org.springframework.beans.factory.FactoryBean
OBJECT_TYPE_ATTRIBUTE
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
addMediaType
(String key, MediaType mediaType) An alternative tosetMediaTypes(java.util.Properties)
for programmatic registrations.void
addMediaTypes
(Map<String, MediaType> mediaTypes) An alternative tosetMediaTypes(java.util.Properties)
for programmatic registrations.void
build()
Create and initialize aContentNegotiationManager
instance.Class<?>
boolean
void
setDefaultContentType
(MediaType contentType) Set the default content type to use when no content type is requested.void
setDefaultContentTypes
(List<MediaType> contentTypes) Set the default content types to use when no content type is requested.void
Set a customContentNegotiationStrategy
to use to determine the content type to use when no content type is requested.void
setFavorParameter
(boolean favorParameter) Whether a request parameter ("format" by default) should be used to determine the requested media type.void
setFavorPathExtension
(boolean favorPathExtension) Deprecated.as of 5.2.4.void
setIgnoreAcceptHeader
(boolean ignoreAcceptHeader) Whether to disable checking the 'Accept' request header.void
setIgnoreUnknownPathExtensions
(boolean ignore) Deprecated.as of 5.2.4.void
setMediaTypes
(Properties mediaTypes) Add a mapping from a key to a MediaType where the key are normalized to lowercase and may have been extracted from a path extension, a filename extension, or passed as a query parameter.void
setParameterName
(String parameterName) Set the query parameter name to use whensetFavorParameter(boolean)
is on.void
setServletContext
(ServletContext servletContext) Invoked by Spring to inject the ServletContext.void
setStrategies
(List<ContentNegotiationStrategy> strategies) Set the exact list of strategies to use.void
setUseJaf
(boolean useJaf) Deprecated.as of 5.0, in favor ofsetUseRegisteredExtensionsOnly(boolean)
, which has reverse behavior.void
setUseRegisteredExtensionsOnly
(boolean useRegisteredExtensionsOnly) WhenfavorPathExtension
orsetFavorParameter(boolean)
is set, this property determines whether to use only registeredMediaType
mappings or to allow dynamic resolution, e.g.
-
Constructor Details
-
ContentNegotiationManagerFactoryBean
public ContentNegotiationManagerFactoryBean()
-
-
Method Details
-
setStrategies
Set the exact list of strategies to use.Note: use of this method is mutually exclusive with use of all other setters in this class which customize a default, fixed set of strategies. See class level doc for more details.
- Parameters:
strategies
- the strategies to use- Since:
- 5.0
-
setFavorParameter
public void setFavorParameter(boolean favorParameter) Whether a request parameter ("format" by default) should be used to determine the requested media type. For this option to work you must registermedia type mappings
.By default this is set to
false
.- See Also:
-
setParameterName
Set the query parameter name to use whensetFavorParameter(boolean)
is on.The default parameter name is
"format"
. -
setFavorPathExtension
Deprecated.as of 5.2.4. See class-level note on the deprecation of path extension config options. As there is no replacement for this method, in 5.2.x it is necessary to set it tofalse
. In 5.3 the default changes tofalse
and use of this property becomes unnecessary.Whether the path extension in the URL path should be used to determine the requested media type.By default this is set to
false
in which case path extensions have no impact on content negotiation. -
setMediaTypes
Add a mapping from a key to a MediaType where the key are normalized to lowercase and may have been extracted from a path extension, a filename extension, or passed as a query parameter.The
parameter strategy
requires such mappings in order to work while thepath extension strategy
can fall back on lookups viaServletContext.getMimeType(java.lang.String)
andMediaTypeFactory
.Note: Mappings registered here may be accessed via
ContentNegotiationManager.getMediaTypeMappings()
and may be used not only in the parameter and path extension strategies. For example, with the Spring MVC config, e.g.@EnableWebMvc
or<mvc:annotation-driven>
, the media type mappings are also plugged in to:- Determine the media type of static resources served with
ResourceHttpRequestHandler
. - Determine the media type of views rendered with
ContentNegotiatingViewResolver
. - List safe extensions for RFD attack detection (check the Spring Framework reference docs for details).
- Parameters:
mediaTypes
- media type mappings- See Also:
- Determine the media type of static resources served with
-
addMediaType
An alternative tosetMediaTypes(java.util.Properties)
for programmatic registrations. -
addMediaTypes
An alternative tosetMediaTypes(java.util.Properties)
for programmatic registrations. -
setIgnoreUnknownPathExtensions
Deprecated.as of 5.2.4. See class-level note on the deprecation of path extension config options.Whether to ignore requests with path extension that cannot be resolved to any media type. Setting this tofalse
will result in anHttpMediaTypeNotAcceptableException
if there is no match.By default this is set to
true
. -
setUseJaf
Deprecated.as of 5.0, in favor ofsetUseRegisteredExtensionsOnly(boolean)
, which has reverse behavior.Indicate whether to use the Java Activation Framework as a fallback option to map from file extensions to media types. -
setUseRegisteredExtensionsOnly
public void setUseRegisteredExtensionsOnly(boolean useRegisteredExtensionsOnly) WhenfavorPathExtension
orsetFavorParameter(boolean)
is set, this property determines whether to use only registeredMediaType
mappings or to allow dynamic resolution, e.g. viaMediaTypeFactory
.By default this is not set in which case dynamic resolution is on.
-
setIgnoreAcceptHeader
public void setIgnoreAcceptHeader(boolean ignoreAcceptHeader) Whether to disable checking the 'Accept' request header.By default this value is set to
false
. -
setDefaultContentType
Set the default content type to use when no content type is requested.By default this is not set.
-
setDefaultContentTypes
Set the default content types to use when no content type is requested.By default this is not set.
-
setDefaultContentTypeStrategy
Set a customContentNegotiationStrategy
to use to determine the content type to use when no content type is requested.By default this is not set.
- Since:
- 4.1.2
- See Also:
-
setServletContext
Invoked by Spring to inject the ServletContext.- Specified by:
setServletContext
in interfaceServletContextAware
- Parameters:
servletContext
- the ServletContext object to be used by this object- See Also:
-
InitializingBean.afterPropertiesSet()
ApplicationContextAware.setApplicationContext(org.springframework.context.ApplicationContext)
-
afterPropertiesSet
public void afterPropertiesSet()- Specified by:
afterPropertiesSet
in interfaceorg.springframework.beans.factory.InitializingBean
-
build
Create and initialize aContentNegotiationManager
instance.- Since:
- 5.0
-
getObject
- Specified by:
getObject
in interfaceorg.springframework.beans.factory.FactoryBean<ContentNegotiationManager>
-
getObjectType
- Specified by:
getObjectType
in interfaceorg.springframework.beans.factory.FactoryBean<ContentNegotiationManager>
-
isSingleton
public boolean isSingleton()- Specified by:
isSingleton
in interfaceorg.springframework.beans.factory.FactoryBean<ContentNegotiationManager>
-