public class ContentNegotiationManagerFactoryBean extends Object implements org.springframework.beans.factory.FactoryBean<ContentNegotiationManager>, ServletContextAware, org.springframework.beans.factory.InitializingBean
ContentNegotiationManager
and configure it with
one or more ContentNegotiationStrategy
instances via simple setters.
The following table shows setters, resulting strategy instances, and if in
use by default:
Property Setter | Underlying Strategy | Default Setting |
---|---|---|
setFavorPathExtension(boolean) |
Path Extension strategy |
On |
favorParameter |
Parameter strategy |
Off |
ignoreAcceptHeader |
Header strategy |
On |
defaultContentType |
Fixed content strategy |
Not set |
defaultContentTypeStrategy |
ContentNegotiationStrategy |
Not set |
The order in which strategies are configured is fixed. Setters may only
turn individual strategies on or off. If you need a custom order for any
reason simply instantiate ContentNegotiationManager
directly.
For the path extension and parameter strategies you may explicitly add
MediaType mappings
. This will be used to resolve path
extensions or a parameter value such as "json" to a media type such as
"application/json".
The path extension strategy will also use ServletContext.getMimeType(java.lang.String)
and the Java Activation framework (JAF), if available, to resolve a path
extension to a MediaType. You may suppress
the use of JAF.
Constructor and Description |
---|
ContentNegotiationManagerFactoryBean() |
Modifier and Type | Method and Description |
---|---|
void |
addMediaType(String fileExtension,
MediaType mediaType)
An alternative to
setMediaTypes(java.util.Properties) for use in Java code. |
void |
addMediaTypes(Map<String,MediaType> mediaTypes)
An alternative to
setMediaTypes(java.util.Properties) for use in Java code. |
void |
afterPropertiesSet() |
ContentNegotiationManager |
getObject() |
Class<?> |
getObjectType() |
boolean |
isSingleton() |
void |
setDefaultContentType(MediaType contentType)
Set the default content type to use when no content type is requested.
|
void |
setDefaultContentTypeStrategy(ContentNegotiationStrategy strategy)
Set a custom
ContentNegotiationStrategy 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)
Whether the path extension in the URL path should be used to determine
the requested media type.
|
void |
setIgnoreAcceptHeader(boolean ignoreAcceptHeader)
Whether to disable checking the 'Accept' request header.
|
void |
setIgnoreUnknownPathExtensions(boolean ignore)
Whether to ignore requests with path extension that cannot be resolved
to any media type.
|
void |
setMediaTypes(Properties mediaTypes)
Add a mapping from a key, extracted from a path extension or a query
parameter, to a MediaType.
|
void |
setParameterName(String parameterName)
Set the query parameter name to use when
setFavorParameter(boolean) is on. |
void |
setServletContext(ServletContext servletContext)
Invoked by Spring to inject the ServletContext.
|
void |
setUseJaf(boolean useJaf)
When
favorPathExtension is set, this
property determines whether to allow use of JAF (Java Activation Framework)
to resolve a path extension to a specific MediaType. |
public ContentNegotiationManagerFactoryBean()
public void setFavorPathExtension(boolean favorPathExtension)
By default this is set to true
in which case a request
for /hotels.pdf
will be interpreted as a request for
"application/pdf"
regardless of the 'Accept' header.
public void setMediaTypes(Properties mediaTypes)
The path extension strategy will also try to use
ServletContext.getMimeType(java.lang.String)
and JAF (if present) to resolve path
extensions. To change this behavior see the useJaf
property.
mediaTypes
- media type mappingsaddMediaType(String, MediaType)
,
addMediaTypes(Map)
public void addMediaType(String fileExtension, MediaType mediaType)
setMediaTypes(java.util.Properties)
for use in Java code.public void addMediaTypes(Map<String,MediaType> mediaTypes)
setMediaTypes(java.util.Properties)
for use in Java code.public void setIgnoreUnknownPathExtensions(boolean ignore)
false
will result in an
HttpMediaTypeNotAcceptableException
if there is no match.
By default this is set to true
.
public void setUseJaf(boolean useJaf)
favorPathExtension
is set, this
property determines whether to allow use of JAF (Java Activation Framework)
to resolve a path extension to a specific MediaType.
By default this is not set in which case
PathExtensionContentNegotiationStrategy
will use JAF if available.
public void setFavorParameter(boolean favorParameter)
media type mappings
.
By default this is set to false
.
setParameterName(java.lang.String)
public void setParameterName(String parameterName)
setFavorParameter(boolean)
is on.
The default parameter name is "format"
.
public void setIgnoreAcceptHeader(boolean ignoreAcceptHeader)
By default this value is set to false
.
public void setDefaultContentType(MediaType contentType)
By default this is not set.
public void setDefaultContentTypeStrategy(ContentNegotiationStrategy strategy)
ContentNegotiationStrategy
to use to determine
the content type to use when no content type is requested.
By default this is not set.
setDefaultContentType(org.springframework.http.MediaType)
public void setServletContext(ServletContext servletContext)
setServletContext
in interface ServletContextAware
servletContext
- ServletContext object to be used by this objectInitializingBean.afterPropertiesSet()
,
ApplicationContextAware.setApplicationContext(org.springframework.context.ApplicationContext)
public void afterPropertiesSet()
afterPropertiesSet
in interface org.springframework.beans.factory.InitializingBean
public ContentNegotiationManager getObject()
getObject
in interface org.springframework.beans.factory.FactoryBean<ContentNegotiationManager>
public Class<?> getObjectType()
getObjectType
in interface org.springframework.beans.factory.FactoryBean<ContentNegotiationManager>
public boolean isSingleton()
isSingleton
in interface org.springframework.beans.factory.FactoryBean<ContentNegotiationManager>