Package org.springframework.web.accept
Class ServletPathExtensionContentNegotiationStrategy
java.lang.Object
org.springframework.web.accept.MappingMediaTypeFileExtensionResolver
org.springframework.web.accept.AbstractMappingContentNegotiationStrategy
org.springframework.web.accept.PathExtensionContentNegotiationStrategy
org.springframework.web.accept.ServletPathExtensionContentNegotiationStrategy
- All Implemented Interfaces:
ContentNegotiationStrategy
,MediaTypeFileExtensionResolver
@Deprecated
public class ServletPathExtensionContentNegotiationStrategy
extends PathExtensionContentNegotiationStrategy
Deprecated.
Extends
PathExtensionContentNegotiationStrategy
that also uses
ServletContext.getMimeType(String)
to resolve file extensions.- Since:
- 3.2
- Author:
- Rossen Stoyanchev
-
Field Summary
Fields inherited from class org.springframework.web.accept.AbstractMappingContentNegotiationStrategy
logger
Fields inherited from interface org.springframework.web.accept.ContentNegotiationStrategy
MEDIA_TYPE_ALL_LIST
-
Constructor Summary
ConstructorDescriptionDeprecated.Create an instance without any mappings to start with.ServletPathExtensionContentNegotiationStrategy
(ServletContext servletContext, Map<String, MediaType> mediaTypes) Deprecated.Create an instance with the given extension-to-MediaType lookup. -
Method Summary
Modifier and TypeMethodDescriptiongetMediaTypeForResource
(Resource resource) Deprecated.Extends the base classPathExtensionContentNegotiationStrategy.getMediaTypeForResource(org.springframework.core.io.Resource)
with the ability to also look up through the ServletContext.protected MediaType
handleNoMatch
(NativeWebRequest webRequest, String extension) Deprecated.Resolve file extension viaServletContext.getMimeType(String)
and also delegate to base class for a potentialMediaTypeFactory
lookup.Methods inherited from class org.springframework.web.accept.PathExtensionContentNegotiationStrategy
getMediaTypeKey, setUrlPathHelper, setUseJaf
Methods inherited from class org.springframework.web.accept.AbstractMappingContentNegotiationStrategy
handleMatch, isIgnoreUnknownExtensions, isUseRegisteredExtensionsOnly, resolveMediaTypeKey, resolveMediaTypes, setIgnoreUnknownExtensions, setUseRegisteredExtensionsOnly
Methods inherited from class org.springframework.web.accept.MappingMediaTypeFileExtensionResolver
addMapping, getAllFileExtensions, getAllMediaTypes, getMediaTypes, lookupMediaType, resolveFileExtensions
-
Constructor Details
-
ServletPathExtensionContentNegotiationStrategy
Deprecated.Create an instance without any mappings to start with. Mappings may be added later when extensions are resolved throughServletContext.getMimeType(String)
or viaMediaTypeFactory
. -
ServletPathExtensionContentNegotiationStrategy
public ServletPathExtensionContentNegotiationStrategy(ServletContext servletContext, @Nullable Map<String, MediaType> mediaTypes) Deprecated.Create an instance with the given extension-to-MediaType lookup.
-
-
Method Details
-
handleNoMatch
@Nullable protected MediaType handleNoMatch(NativeWebRequest webRequest, String extension) throws HttpMediaTypeNotAcceptableException Deprecated.Resolve file extension viaServletContext.getMimeType(String)
and also delegate to base class for a potentialMediaTypeFactory
lookup.- Overrides:
handleNoMatch
in classAbstractMappingContentNegotiationStrategy
- Throws:
HttpMediaTypeNotAcceptableException
-
getMediaTypeForResource
Deprecated.Extends the base classPathExtensionContentNegotiationStrategy.getMediaTypeForResource(org.springframework.core.io.Resource)
with the ability to also look up through the ServletContext.- Overrides:
getMediaTypeForResource
in classPathExtensionContentNegotiationStrategy
- Parameters:
resource
- the resource to look up- Returns:
- the MediaType for the extension, or
null
if none found - Since:
- 4.3
-
ContentNegotiationManagerFactoryBean
on the deprecation of path extension config options.