Class ContentNegotiationManagerFactoryBean
- All Implemented Interfaces:
FactoryBean<ContentNegotiationManager>
,InitializingBean
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 |
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)
.
- 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
(@Nullable Map<String, MediaType> mediaTypes) An alternative tosetMediaTypes(java.util.Properties)
for programmatic registrations.void
Invoked by the containingBeanFactory
after it has set all bean properties and satisfiedBeanFactoryAware
,ApplicationContextAware
etc.build()
Create and initialize aContentNegotiationManager
instance.Return an instance (possibly shared or independent) of the object managed by this factory.Class<?>
Return the type of object that this FactoryBean creates, ornull
if not known in advance.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
setIgnoreAcceptHeader
(boolean ignoreAcceptHeader) Whether to disable checking the 'Accept' request header.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
setStrategies
(@Nullable List<ContentNegotiationStrategy> strategies) Set the exact list of strategies to use.void
setUseRegisteredExtensionsOnly
(boolean useRegisteredExtensionsOnly) WhensetFavorParameter(boolean)
is set, this property determines whether to use only registeredMediaType
mappings or to allow dynamic resolution, for example, viaMediaTypeFactory
.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.springframework.beans.factory.FactoryBean
isSingleton
-
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"
. -
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.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, for example,@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. -
setUseRegisteredExtensionsOnly
public void setUseRegisteredExtensionsOnly(boolean useRegisteredExtensionsOnly) WhensetFavorParameter(boolean)
is set, this property determines whether to use only registeredMediaType
mappings or to allow dynamic resolution, for example, 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:
-
afterPropertiesSet
public void afterPropertiesSet()Description copied from interface:InitializingBean
Invoked by the containingBeanFactory
after it has set all bean properties and satisfiedBeanFactoryAware
,ApplicationContextAware
etc.This method allows the bean instance to perform validation of its overall configuration and final initialization when all bean properties have been set.
- Specified by:
afterPropertiesSet
in interfaceInitializingBean
-
build
Create and initialize aContentNegotiationManager
instance.- Since:
- 5.0
-
getObject
Description copied from interface:FactoryBean
Return an instance (possibly shared or independent) of the object managed by this factory.As with a
BeanFactory
, this allows support for both the Singleton and Prototype design patterns.If this FactoryBean is not fully initialized yet at the time of the call (for example because it is involved in a circular reference), throw a corresponding
FactoryBeanNotInitializedException
.FactoryBeans are allowed to return
null
objects. The bean factory will consider this as a normal value to be used and will not throw aFactoryBeanNotInitializedException
in this case. However, FactoryBean implementations are encouraged to throwFactoryBeanNotInitializedException
themselves, as appropriate.- Specified by:
getObject
in interfaceFactoryBean<ContentNegotiationManager>
- Returns:
- an instance of the bean (can be
null
) - See Also:
-
getObjectType
Description copied from interface:FactoryBean
Return the type of object that this FactoryBean creates, ornull
if not known in advance.This allows one to check for specific types of beans without instantiating objects, for example on autowiring.
In the case of implementations that create a singleton object, this method should try to avoid singleton creation as far as possible; it should rather estimate the type in advance. For prototypes, returning a meaningful type here is advisable too.
This method can be called before this FactoryBean has been fully initialized. It must not rely on state created during initialization; of course, it can still use such state if available.
NOTE: Autowiring will simply ignore FactoryBeans that return
null
here. Therefore, it is highly recommended to implement this method properly, using the current state of the FactoryBean.- Specified by:
getObjectType
in interfaceFactoryBean<ContentNegotiationManager>
- Returns:
- the type of object that this FactoryBean creates,
or
null
if not known at the time of the call - See Also:
-